naive-ui/demo/demo.vue

167 lines
3.1 KiB
Vue
Raw Normal View History

<template>
2019-06-04 12:09:02 +08:00
<div class="demo">
<n-nimbus-service-layout
service-icon="md-contacts"
2019-06-23 19:52:26 +08:00
name="NAIVE UI (0.1.49)"
:items="items"
>
2019-06-23 19:52:26 +08:00
<router-view />
</n-nimbus-service-layout>
</div>
</template>
<script>
export default {
data () {
return {
items: [
2019-06-23 19:52:26 +08:00
{
name: 'Installation'
},
{
name: 'Nimbus',
path: '/',
childItems: [
{
name: 'Nimbus Service Layout',
path: '/'
},
{
name: 'Nimbus Home Layout',
path: '/'
},
{
name: 'Nimbus Form Card',
path: '/'
},
{
name: 'Nimbus Confirm Card',
path: '/'
}
]
},
{
name: 'Common',
path: '/',
childItems: [
{
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: '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: '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'
},
{
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: 'Tooltip',
2019-06-23 19:52:26 +08:00
path: '/n-tooltip'
}
]
}
]
}
}
}
</script>
<style lang="scss" scoped>
.demo {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
</style>
2019-06-18 16:53:16 +08:00
2019-06-24 01:16:38 +08:00
<style lang="scss">
2019-06-18 16:53:16 +08:00
.CodeMirror {
2019-06-24 01:16:38 +08:00
border: 2px solid #5C657EFF;
2019-06-18 16:53:16 +08:00
height: auto;
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 {
overflow-y: hidden;
overflow-x: auto;
}
2019-06-23 19:52:26 +08:00
.n-nimbus-service-layout__body {
padding: 0!important;
}
2019-06-24 01:16:38 +08:00
.n-doc {
width: 780px;
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 {
background: #5C657EFF;
padding: 18px;
border-radius: 8px;
justify-content: center;
display: flex;
margin-bottom: 12px;
flex-wrap: wrap;
}
.n-doc-section__source {
}
}
}
2019-06-18 16:53:16 +08:00
</style>