[new feature] add Notify component (#2135)

This commit is contained in:
neverland
2018-11-25 10:36:07 +08:00
committed by GitHub
parent 00458839a2
commit eb44209a5a
22 changed files with 465 additions and 5 deletions

View File

@@ -27,6 +27,7 @@ export default {
'loading': () => wrapper(import('../../packages/loading/demo'), 'loading'),
'nav-bar': () => wrapper(import('../../packages/nav-bar/demo'), 'nav-bar'),
'notice-bar': () => wrapper(import('../../packages/notice-bar/demo'), 'notice-bar'),
'notify': () => wrapper(import('../../packages/notify/demo'), 'notify'),
'number-keyboard': () => wrapper(import('../../packages/number-keyboard/demo'), 'number-keyboard'),
'pagination': () => wrapper(import('../../packages/pagination/demo'), 'pagination'),
'panel': () => wrapper(import('../../packages/panel/demo'), 'panel'),

View File

@@ -172,6 +172,10 @@ module.exports = {
path: '/loading',
title: 'Loading 加载'
},
{
path: '/notify',
title: 'Notify 消息通知'
},
{
path: '/pull-refresh',
title: 'PullRefresh 下拉刷新'
@@ -469,6 +473,10 @@ module.exports = {
path: '/loading',
title: 'Loading'
},
{
path: '/notify',
title: 'Notify'
},
{
path: '/pull-refresh',
title: 'PullRefresh'

View File

@@ -62,6 +62,8 @@ export default {
'nav-bar.zh-CN': () => import('../../packages/nav-bar/zh-CN.md'),
'notice-bar.en-US': () => import('../../packages/notice-bar/en-US.md'),
'notice-bar.zh-CN': () => import('../../packages/notice-bar/zh-CN.md'),
'notify.en-US': () => import('../../packages/notify/en-US.md'),
'notify.zh-CN': () => import('../../packages/notify/zh-CN.md'),
'number-keyboard.en-US': () => import('../../packages/number-keyboard/en-US.md'),
'number-keyboard.zh-CN': () => import('../../packages/number-keyboard/zh-CN.md'),
'pagination.en-US': () => import('../../packages/pagination/en-US.md'),