From c20fdebe3a07bd3b70926cdd948f55ebd2157a6d Mon Sep 17 00:00:00 2001 From: liyang <1711467488@qq.com> Date: Mon, 18 Jun 2018 21:06:41 +0800 Subject: [PATCH] no message Former-commit-id: d63b5bae5645a5727f8c1d2d123a9fed69d8333b [formerly d63b5bae5645a5727f8c1d2d123a9fed69d8333b [formerly d63b5bae5645a5727f8c1d2d123a9fed69d8333b [formerly d63b5bae5645a5727f8c1d2d123a9fed69d8333b [formerly a59aa74987e2519406b30df3fbd75f06196d1f84 [formerly 94a4692a08bd1bf4a14bc48bbc49b9a1496265fa]]]]] Former-commit-id: 36e0293c6334d189140559150bd3477050dbacf9 Former-commit-id: a7f0c2023cba8b4af01637727fd0d6afeddf4a73 Former-commit-id: fb32d9e301456758eef95cbf6d22cc1b03e69837 [formerly 92ee4b0aa05ab92ed8ae8d746a4bb9581b3202ce] Former-commit-id: f5e7b8309adf60ab634be06e40eafd04b52988ca Former-commit-id: 0fc0aa7383bebded723782575f6967d7b4e65149 Former-commit-id: 7e5b6c0abd029b3bcf92738f639a1f3040b19497 Former-commit-id: 986e0d5e0c6812538ca6b6d4fda0889d0739a37e Former-commit-id: 5d191db791849d887493433ef9b1101d5d0b0e9b --- src/menu/index.js | 3 +- src/pages/demo/element/basic-icon/index.vue | 23 +++++ .../demo/element/basic-typography/index.vue | 83 ++++++++++++++++++- src/router/index.js | 1 + 4 files changed, 108 insertions(+), 2 deletions(-) create mode 100644 src/pages/demo/element/basic-icon/index.vue diff --git a/src/menu/index.js b/src/menu/index.js index e78d5eca..d3df29ed 100644 --- a/src/menu/index.js +++ b/src/menu/index.js @@ -135,8 +135,9 @@ const demoElement = { children: [ { path: `${pre}basic-layout`, title: '布局' }, { path: `${pre}basic-container`, title: '布局容器' }, - { path: `${pre}basic-color`, title: '颜色' }, + { path: `${pre}basic-color`, title: '色彩' }, { path: `${pre}basic-typography`, title: '字体' }, + { path: `${pre}basic-icon`, title: '图标' }, { path: `${pre}basic-button`, title: '按钮' } ] } diff --git a/src/pages/demo/element/basic-icon/index.vue b/src/pages/demo/element/basic-icon/index.vue new file mode 100644 index 00000000..d981f9c8 --- /dev/null +++ b/src/pages/demo/element/basic-icon/index.vue @@ -0,0 +1,23 @@ + diff --git a/src/pages/demo/element/basic-typography/index.vue b/src/pages/demo/element/basic-typography/index.vue index 4ecce535..8632c179 100644 --- a/src/pages/demo/element/basic-typography/index.vue +++ b/src/pages/demo/element/basic-typography/index.vue @@ -2,9 +2,90 @@ + + + + +

和畅惠风

+
+
+ + + +

和畅惠风

+
+
+ + + +

和畅惠风

+
+
+
+
+ + + + + + +

RGag

+
+
+ + + +

RGag

+
+
+ + + +

RGag

+
+
+
- + +
+ + + + diff --git a/src/router/index.js b/src/router/index.js index df45d017..565c331d 100755 --- a/src/router/index.js +++ b/src/router/index.js @@ -112,6 +112,7 @@ const routes = [ { path: 'basic-container', name: `${pre}basic-container`, component: () => import('@/pages/demo/element/basic-container/index.vue'), meta }, { path: 'basic-color', name: `${pre}basic-color`, component: () => import('@/pages/demo/element/basic-color/index.vue'), meta }, { path: 'basic-typography', name: `${pre}basic-typography`, component: () => import('@/pages/demo/element/basic-typography/index.vue'), meta }, + { path: 'basic-icon', name: `${pre}basic-icon`, component: () => import('@/pages/demo/element/basic-icon/index.vue'), meta }, { path: 'basic-button', name: `${pre}basic-button`, component: () => import('@/pages/demo/element/basic-button/index.vue'), meta }, { path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/element/index/index.vue'), meta } ])('demo-element-')