naive-ui/demo/demo.vue

231 lines
4.7 KiB
Vue
Raw Normal View History

<template>
2019-06-04 12:09:02 +08:00
<div class="demo">
<n-nimbus-service-layout
icon="md-contacts"
2019-07-11 14:05:34 +08:00
:name="`NAIVE UI (${version})`"
2019-06-24 15:11:27 +08:00
:padding-body="false"
:items="items"
>
2019-06-23 19:52:26 +08:00
<router-view />
</n-nimbus-service-layout>
</div>
</template>
<script>
2019-07-11 14:05:34 +08:00
import { version } from '../package.json'
export default {
data () {
return {
2019-07-11 14:05:34 +08:00
version,
items: [
2019-06-23 19:52:26 +08:00
{
2019-06-24 15:11:27 +08:00
name: 'Start',
path: '/start'
2019-06-23 19:52:26 +08:00
},
{
name: 'Nimbus',
path: '/',
childItems: [
{
name: 'Nimbus Service Layout',
2019-06-24 15:11:27 +08:00
path: '/n-nimbus-service-layout'
},
2019-06-24 15:11:27 +08:00
// {
// name: 'Nimbus Home Layout',
// path: '/n-nimbus-home-layout'
// },
{
name: 'Nimbus Form Card',
2019-06-24 15:11:27 +08:00
path: '/n-nimbus-form-card'
},
{
name: 'Nimbus Confirm Card',
2019-06-24 15:11:27 +08:00
path: '/n-nimbus-confirm-card'
2019-07-15 11:34:30 +08:00
},
{
name: 'Nimbus Icon',
path: '/n-nimbus-icon'
}
]
},
{
name: 'Common',
childItems: [
{
name: 'AdvanceTable',
path: '/n-advance-table'
},
2019-07-02 18:08:59 +08:00
{
name: 'Alert',
path: '/n-alert'
},
{
name: 'Button',
2019-06-23 19:52:26 +08:00
path: '/n-button'
},
{
name: 'Checkbox',
2019-06-23 19:52:26 +08:00
path: '/n-checkbox'
},
{
name: 'DatePicker',
path: '/n-date-picker'
},
{
name: 'Gradient Text',
2019-06-23 19:52:26 +08:00
path: '/n-gradient-text'
},
{
name: 'Icon',
2019-06-23 19:52:26 +08:00
path: '/n-icon'
},
{
name: 'Input',
2019-06-23 19:52:26 +08:00
path: '/n-input'
},
{
name: 'InputNumber',
path: '/n-input-number'
},
{
name: 'Message',
2019-06-23 19:52:26 +08:00
path: '/n-message'
},
{
name: 'Modal',
2019-06-23 19:52:26 +08:00
path: '/n-modal'
},
{
name: 'Notification',
2019-06-23 19:52:26 +08:00
path: '/n-notification'
},
{
name: 'Pagination',
2019-06-23 19:52:26 +08:00
path: '/n-pagination'
},
2019-07-02 18:08:59 +08:00
{
2019-07-11 19:51:59 +08:00
name: 'Popover',
path: '/n-popover'
2019-07-02 18:08:59 +08:00
},
{
name: 'Radio',
path: '/n-radio'
},
{
name: 'Select',
2019-06-23 19:52:26 +08:00
path: '/n-select'
},
{
name: 'Switch',
2019-06-23 19:52:26 +08:00
path: '/n-switch'
},
{
name: 'Table',
2019-06-23 19:52:26 +08:00
path: '/n-table'
},
{
name: 'TimePicker',
path: '/n-time-picker'
},
{
name: 'Tooltip',
2019-06-23 19:52:26 +08:00
path: '/n-tooltip'
2019-07-22 19:14:47 +08:00
},
{
name: 'Form',
path: '/n-form'
}
]
},
{
name: 'Debug',
childItems: [
{
name: 'PopoverDebug',
path: '/n-popover-debug'
},
{
name: 'RouterDebug',
path: '/n-router-debug'
}
]
}
]
}
}
}
</script>
<style lang="scss" scoped>
.demo {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
2019-06-27 16:26:23 +08:00
min-width: 1080px;
}
</style>
2019-06-18 16:53:16 +08:00
2019-06-24 01:16:38 +08:00
<style lang="scss">
body {
-webkit-text-size-adjust: 100%;
}
2019-06-18 16:53:16 +08:00
.CodeMirror {
2019-06-26 20:16:11 +08:00
border: 2px solid #5c657eff;
height: auto !important;
z-index: 0;
2019-06-24 01:16:38 +08:00
border-radius: 8px;
padding: 8px;
2019-06-23 19:52:26 +08:00
margin-bottom: 18px;
2019-06-18 16:53:16 +08:00
}
.CodeMirror-scroll {
2019-06-26 20:16:11 +08:00
overflow-y: hidden !important;
overflow-x: auto !important;
2019-06-18 16:53:16 +08:00
}
2019-06-24 01:16:38 +08:00
.n-doc {
2019-06-27 16:26:23 +08:00
width: 720px;
2019-06-24 01:16:38 +08:00
margin: 0 auto;
.n-doc-header {
display: flex;
height: 60px;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
align-items: center;
}
.n-doc-body {
padding-top: 14px;
}
.n-doc-section {
.n-doc-section__header {
font-size: 16px;
font-weight: bold;
margin-bottom: 12px;
}
.n-doc-section__view {
2019-06-26 20:16:11 +08:00
background: #5c657eff;
2019-06-24 01:16:38 +08:00
padding: 18px;
border-radius: 8px;
justify-content: center;
display: flex;
margin-bottom: 12px;
flex-wrap: wrap;
}
2019-07-15 17:41:56 +08:00
.n-doc-section__inspect {
background: #5c657eff;
padding: 18px;
border-radius: 8px;
display: flex;
margin-bottom: 12px;
flex-wrap: wrap;
}
2019-06-26 13:37:58 +08:00
.n-doc-section__text-content {
font-size: 16px;
}
2019-06-24 01:16:38 +08:00
.n-doc-section__source {
position: relative;
2019-06-24 01:16:38 +08:00
}
}
}
2019-06-18 16:53:16 +08:00
</style>