diff --git a/src/api/article.js b/src/api/article.js deleted file mode 100644 index 407bda16..00000000 --- a/src/api/article.js +++ /dev/null @@ -1,41 +0,0 @@ -import request from '@/utils/request' - -export function fetchList(query) { - return request({ - url: '/vue-element-admin/article/list', - method: 'get', - params: query - }) -} - -export function fetchArticle(id) { - return request({ - url: '/vue-element-admin/article/detail', - method: 'get', - params: { id } - }) -} - -export function fetchPv(pv) { - return request({ - url: '/vue-element-admin/article/pv', - method: 'get', - params: { pv } - }) -} - -export function createArticle(data) { - return request({ - url: '/vue-element-admin/article/create', - method: 'post', - data - }) -} - -export function updateArticle(data) { - return request({ - url: '/vue-element-admin/article/update', - method: 'post', - data - }) -} diff --git a/src/api/qiniu.js b/src/api/qiniu.js deleted file mode 100644 index a0375844..00000000 --- a/src/api/qiniu.js +++ /dev/null @@ -1,8 +0,0 @@ -import request from '@/utils/request' - -export function getToken() { - return request({ - url: '/qiniu/upload/token', // 假地址 自行替换 - method: 'get' - }) -} diff --git a/src/api/role.js b/src/api/role.js deleted file mode 100644 index 959bbd21..00000000 --- a/src/api/role.js +++ /dev/null @@ -1,38 +0,0 @@ -import request from '@/utils/request' - -export function getRoutes() { - return request({ - url: '/vue-element-admin/routes', - method: 'get' - }) -} - -export function getRoles() { - return request({ - url: '/vue-element-admin/roles', - method: 'get' - }) -} - -export function addRole(data) { - return request({ - url: '/vue-element-admin/role', - method: 'post', - data - }) -} - -export function updateRole(id, data) { - return request({ - url: `/vue-element-admin/role/${id}`, - method: 'put', - data - }) -} - -export function deleteRole(id) { - return request({ - url: `/vue-element-admin/role/${id}`, - method: 'delete' - }) -} diff --git a/src/router/index.js b/src/router/index.js index 2e522b2a..e9c11afb 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -6,12 +6,6 @@ Vue.use(Router) /* Layout */ import Layout from '@/layout' -/* Router Modules */ -import componentsRouter from './modules/components' -import chartsRouter from './modules/charts' -import tableRouter from './modules/table' -import nestedRouter from './modules/nested' - /** * Note: sub-menu only appear when route children.length >= 1 * Detail see: https://panjiachen.github.io/vue-element-admin-site/guide/essentials/router-and-nav.html @@ -79,32 +73,7 @@ export const constantRoutes = [ path: 'dashboard', component: () => import('@/views/dashboard/index'), name: 'Dashboard', - meta: { title: 'Dashboard', icon: 'dashboard', affix: true } - } - ] - }, - { - path: '/documentation', - component: Layout, - children: [ - { - path: 'index', - component: () => import('@/views/documentation/index'), - name: 'Documentation', - meta: { title: 'Documentation', icon: 'documentation', affix: true } - } - ] - }, - { - path: '/guide', - component: Layout, - redirect: '/guide/index', - children: [ - { - path: 'index', - component: () => import('@/views/guide/index'), - name: 'Guide', - meta: { title: 'Guide', icon: 'guide', noCache: true } + meta: { title: '首页', icon: 'dashboard', affix: true } } ] }, @@ -129,260 +98,6 @@ export const constantRoutes = [ * the routes that need to be dynamically loaded based on user roles */ export const asyncRoutes = [ - { - path: '/permission', - component: Layout, - redirect: '/permission/page', - alwaysShow: true, // will always show the root menu - name: 'Permission', - meta: { - title: 'Permission', - icon: 'lock', - roles: ['admin', 'editor'] // you can set roles in root nav - }, - children: [ - { - path: 'page', - component: () => import('@/views/permission/page'), - name: 'PagePermission', - meta: { - title: 'Page Permission', - roles: ['admin'] // or you can only set roles in sub nav - } - }, - { - path: 'directive', - component: () => import('@/views/permission/directive'), - name: 'DirectivePermission', - meta: { - title: 'Directive Permission' - // if do not set roles, means: this page does not require permission - } - }, - { - path: 'role', - component: () => import('@/views/permission/role'), - name: 'RolePermission', - meta: { - title: 'Role Permission', - roles: ['admin'] - } - } - ] - }, - - { - path: '/icon', - component: Layout, - children: [ - { - path: 'index', - component: () => import('@/views/icons/index'), - name: 'Icons', - meta: { title: 'Icons', icon: 'icon', noCache: true } - } - ] - }, - - /** when your routing map is too long, you can split it into small modules **/ - componentsRouter, - chartsRouter, - nestedRouter, - tableRouter, - - { - path: '/example', - component: Layout, - redirect: '/example/list', - name: 'Example', - meta: { - title: 'Example', - icon: 'example' - }, - children: [ - { - path: 'create', - component: () => import('@/views/example/create'), - name: 'CreateArticle', - meta: { title: 'Create Article', icon: 'edit' } - }, - { - path: 'edit/:id(\\d+)', - component: () => import('@/views/example/edit'), - name: 'EditArticle', - meta: { title: 'Edit Article', noCache: true, activeMenu: '/example/list' }, - hidden: true - }, - { - path: 'list', - component: () => import('@/views/example/list'), - name: 'ArticleList', - meta: { title: 'Article List', icon: 'list' } - } - ] - }, - - { - path: '/tab', - component: Layout, - children: [ - { - path: 'index', - component: () => import('@/views/tab/index'), - name: 'Tab', - meta: { title: 'Tab', icon: 'tab' } - } - ] - }, - - { - path: '/error', - component: Layout, - redirect: 'noRedirect', - name: 'ErrorPages', - meta: { - title: 'Error Pages', - icon: '404' - }, - children: [ - { - path: '401', - component: () => import('@/views/error-page/401'), - name: 'Page401', - meta: { title: '401', noCache: true } - }, - { - path: '404', - component: () => import('@/views/error-page/404'), - name: 'Page404', - meta: { title: '404', noCache: true } - } - ] - }, - - { - path: '/error-log', - component: Layout, - children: [ - { - path: 'log', - component: () => import('@/views/error-log/index'), - name: 'ErrorLog', - meta: { title: 'Error Log', icon: 'bug' } - } - ] - }, - - { - path: '/excel', - component: Layout, - redirect: '/excel/export-excel', - name: 'Excel', - meta: { - title: 'Excel', - icon: 'excel' - }, - children: [ - { - path: 'export-excel', - component: () => import('@/views/excel/export-excel'), - name: 'ExportExcel', - meta: { title: 'Export Excel' } - }, - { - path: 'export-selected-excel', - component: () => import('@/views/excel/select-excel'), - name: 'SelectExcel', - meta: { title: 'Export Selected' } - }, - { - path: 'export-merge-header', - component: () => import('@/views/excel/merge-header'), - name: 'MergeHeader', - meta: { title: 'Merge Header' } - }, - { - path: 'upload-excel', - component: () => import('@/views/excel/upload-excel'), - name: 'UploadExcel', - meta: { title: 'Upload Excel' } - } - ] - }, - - { - path: '/zip', - component: Layout, - redirect: '/zip/download', - alwaysShow: true, - name: 'Zip', - meta: { title: 'Zip', icon: 'zip' }, - children: [ - { - path: 'download', - component: () => import('@/views/zip/index'), - name: 'ExportZip', - meta: { title: 'Export Zip' } - } - ] - }, - - { - path: '/pdf', - component: Layout, - redirect: '/pdf/index', - children: [ - { - path: 'index', - component: () => import('@/views/pdf/index'), - name: 'PDF', - meta: { title: 'PDF', icon: 'pdf' } - } - ] - }, - { - path: '/pdf/download', - component: () => import('@/views/pdf/download'), - hidden: true - }, - - { - path: '/theme', - component: Layout, - children: [ - { - path: 'index', - component: () => import('@/views/theme/index'), - name: 'Theme', - meta: { title: 'Theme', icon: 'theme' } - } - ] - }, - - { - path: '/clipboard', - component: Layout, - children: [ - { - path: 'index', - component: () => import('@/views/clipboard/index'), - name: 'ClipboardDemo', - meta: { title: 'Clipboard', icon: 'clipboard' } - } - ] - }, - - { - path: 'external-link', - component: Layout, - children: [ - { - path: 'https://github.com/PanJiaChen/vue-element-admin', - meta: { title: 'External Link', icon: 'link' } - } - ] - }, - // 404 page must be placed at the end !!! { path: '*', redirect: '/404', hidden: true } ] diff --git a/src/router/modules/charts.js b/src/router/modules/charts.js deleted file mode 100644 index 29684dec..00000000 --- a/src/router/modules/charts.js +++ /dev/null @@ -1,36 +0,0 @@ -/** When your routing table is too long, you can split it into small modules**/ - -import Layout from '@/layout' - -const chartsRouter = { - path: '/charts', - component: Layout, - redirect: 'noRedirect', - name: 'Charts', - meta: { - title: 'Charts', - icon: 'chart' - }, - children: [ - { - path: 'keyboard', - component: () => import('@/views/charts/keyboard'), - name: 'KeyboardChart', - meta: { title: 'Keyboard Chart', noCache: true } - }, - { - path: 'line', - component: () => import('@/views/charts/line'), - name: 'LineChart', - meta: { title: 'Line Chart', noCache: true } - }, - { - path: 'mix-chart', - component: () => import('@/views/charts/mix-chart'), - name: 'MixChart', - meta: { title: 'Mix Chart', noCache: true } - } - ] -} - -export default chartsRouter diff --git a/src/router/modules/components.js b/src/router/modules/components.js deleted file mode 100644 index 0da96f97..00000000 --- a/src/router/modules/components.js +++ /dev/null @@ -1,102 +0,0 @@ -/** When your routing table is too long, you can split it into small modules **/ - -import Layout from '@/layout' - -const componentsRouter = { - path: '/components', - component: Layout, - redirect: 'noRedirect', - name: 'ComponentDemo', - meta: { - title: 'Components', - icon: 'component' - }, - children: [ - { - path: 'tinymce', - component: () => import('@/views/components-demo/tinymce'), - name: 'TinymceDemo', - meta: { title: 'Tinymce' } - }, - { - path: 'markdown', - component: () => import('@/views/components-demo/markdown'), - name: 'MarkdownDemo', - meta: { title: 'Markdown' } - }, - { - path: 'json-editor', - component: () => import('@/views/components-demo/json-editor'), - name: 'JsonEditorDemo', - meta: { title: 'JSON Editor' } - }, - { - path: 'split-pane', - component: () => import('@/views/components-demo/split-pane'), - name: 'SplitpaneDemo', - meta: { title: 'SplitPane' } - }, - { - path: 'avatar-upload', - component: () => import('@/views/components-demo/avatar-upload'), - name: 'AvatarUploadDemo', - meta: { title: 'Upload' } - }, - { - path: 'dropzone', - component: () => import('@/views/components-demo/dropzone'), - name: 'DropzoneDemo', - meta: { title: 'Dropzone' } - }, - { - path: 'sticky', - component: () => import('@/views/components-demo/sticky'), - name: 'StickyDemo', - meta: { title: 'Sticky' } - }, - { - path: 'count-to', - component: () => import('@/views/components-demo/count-to'), - name: 'CountToDemo', - meta: { title: 'Count To' } - }, - { - path: 'mixin', - component: () => import('@/views/components-demo/mixin'), - name: 'ComponentMixinDemo', - meta: { title: 'Component Mixin' } - }, - { - path: 'back-to-top', - component: () => import('@/views/components-demo/back-to-top'), - name: 'BackToTopDemo', - meta: { title: 'Back To Top' } - }, - { - path: 'drag-dialog', - component: () => import('@/views/components-demo/drag-dialog'), - name: 'DragDialogDemo', - meta: { title: 'Drag Dialog' } - }, - { - path: 'drag-select', - component: () => import('@/views/components-demo/drag-select'), - name: 'DragSelectDemo', - meta: { title: 'Drag Select' } - }, - { - path: 'dnd-list', - component: () => import('@/views/components-demo/dnd-list'), - name: 'DndListDemo', - meta: { title: 'Dnd List' } - }, - { - path: 'drag-kanban', - component: () => import('@/views/components-demo/drag-kanban'), - name: 'DragKanbanDemo', - meta: { title: 'Drag Kanban' } - } - ] -} - -export default componentsRouter diff --git a/src/router/modules/nested.js b/src/router/modules/nested.js deleted file mode 100644 index 48033ed1..00000000 --- a/src/router/modules/nested.js +++ /dev/null @@ -1,66 +0,0 @@ -/** When your routing table is too long, you can split it into small modules **/ - -import Layout from '@/layout' - -const nestedRouter = { - path: '/nested', - component: Layout, - redirect: '/nested/menu1/menu1-1', - name: 'Nested', - meta: { - title: 'Nested Routes', - icon: 'nested' - }, - children: [ - { - path: 'menu1', - component: () => import('@/views/nested/menu1/index'), // Parent router-view - name: 'Menu1', - meta: { title: 'Menu 1' }, - redirect: '/nested/menu1/menu1-1', - children: [ - { - path: 'menu1-1', - component: () => import('@/views/nested/menu1/menu1-1'), - name: 'Menu1-1', - meta: { title: 'Menu 1-1' } - }, - { - path: 'menu1-2', - component: () => import('@/views/nested/menu1/menu1-2'), - name: 'Menu1-2', - redirect: '/nested/menu1/menu1-2/menu1-2-1', - meta: { title: 'Menu 1-2' }, - children: [ - { - path: 'menu1-2-1', - component: () => import('@/views/nested/menu1/menu1-2/menu1-2-1'), - name: 'Menu1-2-1', - meta: { title: 'Menu 1-2-1' } - }, - { - path: 'menu1-2-2', - component: () => import('@/views/nested/menu1/menu1-2/menu1-2-2'), - name: 'Menu1-2-2', - meta: { title: 'Menu 1-2-2' } - } - ] - }, - { - path: 'menu1-3', - component: () => import('@/views/nested/menu1/menu1-3'), - name: 'Menu1-3', - meta: { title: 'Menu 1-3' } - } - ] - }, - { - path: 'menu2', - name: 'Menu2', - component: () => import('@/views/nested/menu2/index'), - meta: { title: 'Menu 2' } - } - ] -} - -export default nestedRouter diff --git a/src/router/modules/table.js b/src/router/modules/table.js deleted file mode 100644 index ec28c527..00000000 --- a/src/router/modules/table.js +++ /dev/null @@ -1,41 +0,0 @@ -/** When your routing table is too long, you can split it into small modules **/ - -import Layout from '@/layout' - -const tableRouter = { - path: '/table', - component: Layout, - redirect: '/table/complex-table', - name: 'Table', - meta: { - title: 'Table', - icon: 'table' - }, - children: [ - { - path: 'dynamic-table', - component: () => import('@/views/table/dynamic-table/index'), - name: 'DynamicTable', - meta: { title: 'Dynamic Table' } - }, - { - path: 'drag-table', - component: () => import('@/views/table/drag-table'), - name: 'DragTable', - meta: { title: 'Drag Table' } - }, - { - path: 'inline-edit-table', - component: () => import('@/views/table/inline-edit-table'), - name: 'InlineEditTable', - meta: { title: 'Inline Edit' } - }, - { - path: 'complex-table', - component: () => import('@/views/table/complex-table'), - name: 'ComplexTable', - meta: { title: 'Complex Table' } - } - ] -} -export default tableRouter diff --git a/src/views/charts/keyboard.vue b/src/views/charts/keyboard.vue deleted file mode 100644 index 917f8eeb..00000000 --- a/src/views/charts/keyboard.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - diff --git a/src/views/charts/line.vue b/src/views/charts/line.vue deleted file mode 100644 index fea1497e..00000000 --- a/src/views/charts/line.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - diff --git a/src/views/charts/mix-chart.vue b/src/views/charts/mix-chart.vue deleted file mode 100644 index c57db75a..00000000 --- a/src/views/charts/mix-chart.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - diff --git a/src/views/clipboard/index.vue b/src/views/clipboard/index.vue deleted file mode 100644 index 4a6bdd1e..00000000 --- a/src/views/clipboard/index.vue +++ /dev/null @@ -1,49 +0,0 @@ - - - - diff --git a/src/views/components-demo/avatar-upload.vue b/src/views/components-demo/avatar-upload.vue deleted file mode 100644 index 5cb20a56..00000000 --- a/src/views/components-demo/avatar-upload.vue +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - diff --git a/src/views/components-demo/back-to-top.vue b/src/views/components-demo/back-to-top.vue deleted file mode 100644 index df5370be..00000000 --- a/src/views/components-demo/back-to-top.vue +++ /dev/null @@ -1,154 +0,0 @@ - - - - - diff --git a/src/views/components-demo/count-to.vue b/src/views/components-demo/count-to.vue deleted file mode 100644 index 70681df6..00000000 --- a/src/views/components-demo/count-to.vue +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - diff --git a/src/views/components-demo/dnd-list.vue b/src/views/components-demo/dnd-list.vue deleted file mode 100644 index e299fa68..00000000 --- a/src/views/components-demo/dnd-list.vue +++ /dev/null @@ -1,39 +0,0 @@ - - - - diff --git a/src/views/components-demo/drag-dialog.vue b/src/views/components-demo/drag-dialog.vue deleted file mode 100644 index c815b282..00000000 --- a/src/views/components-demo/drag-dialog.vue +++ /dev/null @@ -1,61 +0,0 @@ - - - diff --git a/src/views/components-demo/drag-kanban.vue b/src/views/components-demo/drag-kanban.vue deleted file mode 100644 index 943be455..00000000 --- a/src/views/components-demo/drag-kanban.vue +++ /dev/null @@ -1,66 +0,0 @@ - - - - diff --git a/src/views/components-demo/drag-select.vue b/src/views/components-demo/drag-select.vue deleted file mode 100644 index 905ecb94..00000000 --- a/src/views/components-demo/drag-select.vue +++ /dev/null @@ -1,43 +0,0 @@ - - - diff --git a/src/views/components-demo/dropzone.vue b/src/views/components-demo/dropzone.vue deleted file mode 100644 index a8c10400..00000000 --- a/src/views/components-demo/dropzone.vue +++ /dev/null @@ -1,31 +0,0 @@ - - - - diff --git a/src/views/components-demo/json-editor.vue b/src/views/components-demo/json-editor.vue deleted file mode 100644 index 85bf3834..00000000 --- a/src/views/components-demo/json-editor.vue +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - diff --git a/src/views/components-demo/markdown.vue b/src/views/components-demo/markdown.vue deleted file mode 100644 index 25cf3e37..00000000 --- a/src/views/components-demo/markdown.vue +++ /dev/null @@ -1,101 +0,0 @@ - - - - - diff --git a/src/views/components-demo/mixin.vue b/src/views/components-demo/mixin.vue deleted file mode 100644 index 425cf4fb..00000000 --- a/src/views/components-demo/mixin.vue +++ /dev/null @@ -1,169 +0,0 @@ - - - - - diff --git a/src/views/components-demo/split-pane.vue b/src/views/components-demo/split-pane.vue deleted file mode 100644 index 7dba353f..00000000 --- a/src/views/components-demo/split-pane.vue +++ /dev/null @@ -1,67 +0,0 @@ - - - - - diff --git a/src/views/components-demo/sticky.vue b/src/views/components-demo/sticky.vue deleted file mode 100644 index f01d088a..00000000 --- a/src/views/components-demo/sticky.vue +++ /dev/null @@ -1,135 +0,0 @@ - - - - - diff --git a/src/views/components-demo/tinymce.vue b/src/views/components-demo/tinymce.vue deleted file mode 100644 index c70179fa..00000000 --- a/src/views/components-demo/tinymce.vue +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - diff --git a/src/views/dashboard/admin/components/BarChart.vue b/src/views/dashboard/admin/components/BarChart.vue deleted file mode 100644 index be0af34f..00000000 --- a/src/views/dashboard/admin/components/BarChart.vue +++ /dev/null @@ -1,102 +0,0 @@ - - - diff --git a/src/views/dashboard/admin/components/BoxCard.vue b/src/views/dashboard/admin/components/BoxCard.vue deleted file mode 100644 index dff8462a..00000000 --- a/src/views/dashboard/admin/components/BoxCard.vue +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - diff --git a/src/views/dashboard/admin/components/LineChart.vue b/src/views/dashboard/admin/components/LineChart.vue deleted file mode 100644 index e654168d..00000000 --- a/src/views/dashboard/admin/components/LineChart.vue +++ /dev/null @@ -1,135 +0,0 @@ - - - diff --git a/src/views/dashboard/admin/components/PanelGroup.vue b/src/views/dashboard/admin/components/PanelGroup.vue deleted file mode 100644 index 589236ed..00000000 --- a/src/views/dashboard/admin/components/PanelGroup.vue +++ /dev/null @@ -1,181 +0,0 @@ - - - - - diff --git a/src/views/dashboard/admin/components/PieChart.vue b/src/views/dashboard/admin/components/PieChart.vue deleted file mode 100644 index 4d2ef32a..00000000 --- a/src/views/dashboard/admin/components/PieChart.vue +++ /dev/null @@ -1,79 +0,0 @@ - - - diff --git a/src/views/dashboard/admin/components/RaddarChart.vue b/src/views/dashboard/admin/components/RaddarChart.vue deleted file mode 100644 index 6823af31..00000000 --- a/src/views/dashboard/admin/components/RaddarChart.vue +++ /dev/null @@ -1,116 +0,0 @@ - - - diff --git a/src/views/dashboard/admin/components/TodoList/Todo.vue b/src/views/dashboard/admin/components/TodoList/Todo.vue deleted file mode 100644 index c4b3cae2..00000000 --- a/src/views/dashboard/admin/components/TodoList/Todo.vue +++ /dev/null @@ -1,81 +0,0 @@ - - - diff --git a/src/views/dashboard/admin/components/TodoList/index.scss b/src/views/dashboard/admin/components/TodoList/index.scss deleted file mode 100644 index 74ce0d54..00000000 --- a/src/views/dashboard/admin/components/TodoList/index.scss +++ /dev/null @@ -1,320 +0,0 @@ -.todoapp { - font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif; - line-height: 1.4em; - color: #4d4d4d; - min-width: 230px; - max-width: 550px; - margin: 0 auto ; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-weight: 300; - background: #fff; - z-index: 1; - position: relative; - button { - margin: 0; - padding: 0; - border: 0; - background: none; - font-size: 100%; - vertical-align: baseline; - font-family: inherit; - font-weight: inherit; - color: inherit; - -webkit-appearance: none; - appearance: none; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - } - :focus { - outline: 0; - } - .hidden { - display: none; - } - .todoapp { - background: #fff; - margin: 130px 0 40px 0; - position: relative; - box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1); - } - .todoapp input::-webkit-input-placeholder { - font-style: italic; - font-weight: 300; - color: #e6e6e6; - } - .todoapp input::-moz-placeholder { - font-style: italic; - font-weight: 300; - color: #e6e6e6; - } - .todoapp input::input-placeholder { - font-style: italic; - font-weight: 300; - color: #e6e6e6; - } - .todoapp h1 { - position: absolute; - top: -155px; - width: 100%; - font-size: 100px; - font-weight: 100; - text-align: center; - color: rgba(175, 47, 47, 0.15); - -webkit-text-rendering: optimizeLegibility; - -moz-text-rendering: optimizeLegibility; - text-rendering: optimizeLegibility; - } - .new-todo, - .edit { - position: relative; - margin: 0; - width: 100%; - font-size: 18px; - font-family: inherit; - font-weight: inherit; - line-height: 1.4em; - border: 0; - color: inherit; - padding: 6px; - border: 1px solid #999; - box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2); - box-sizing: border-box; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - } - .new-todo { - padding: 10px 16px 16px 60px; - border: none; - background: rgba(0, 0, 0, 0.003); - box-shadow: inset 0 -2px 1px rgba(0, 0, 0, 0.03); - } - .main { - position: relative; - z-index: 2; - border-top: 1px solid #e6e6e6; - } - .toggle-all { - text-align: center; - border: none; - /* Mobile Safari */ - opacity: 0; - position: absolute; - } - .toggle-all+label { - width: 60px; - height: 34px; - font-size: 0; - position: absolute; - top: -52px; - left: -13px; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - } - .toggle-all+label:before { - content: '❯'; - font-size: 22px; - color: #e6e6e6; - padding: 10px 27px 10px 27px; - } - .toggle-all:checked+label:before { - color: #737373; - } - .todo-list { - margin: 0; - padding: 0; - list-style: none; - } - .todo-list li { - position: relative; - font-size: 24px; - border-bottom: 1px solid #ededed; - } - .todo-list li:last-child { - border-bottom: none; - } - .todo-list li.editing { - border-bottom: none; - padding: 0; - } - .todo-list li.editing .edit { - display: block; - width: 506px; - padding: 12px 16px; - margin: 0 0 0 43px; - } - .todo-list li.editing .view { - display: none; - } - .todo-list li .toggle { - text-align: center; - width: 40px; - /* auto, since non-WebKit browsers doesn't support input styling */ - height: auto; - position: absolute; - top: 0; - bottom: 0; - margin: auto 0; - border: none; - /* Mobile Safari */ - -webkit-appearance: none; - appearance: none; - } - .todo-list li .toggle { - opacity: 0; - } - .todo-list li .toggle+label { - /* - Firefox requires `#` to be escaped - https://bugzilla.mozilla.org/show_bug.cgi?id=922433 - IE and Edge requires *everything* to be escaped to render, so we do that instead of just the `#` - https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7157459/ - */ - background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%23ededed%22%20stroke-width%3D%223%22/%3E%3C/svg%3E'); - background-repeat: no-repeat; - background-position: center left; - background-size: 36px; - } - .todo-list li .toggle:checked+label { - background-size: 36px; - background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%23bddad5%22%20stroke-width%3D%223%22/%3E%3Cpath%20fill%3D%22%235dc2af%22%20d%3D%22M72%2025L42%2071%2027%2056l-4%204%2020%2020%2034-52z%22/%3E%3C/svg%3E'); - } - .todo-list li label { - word-break: break-all; - padding: 15px 15px 15px 50px; - display: block; - line-height: 1.0; - font-size: 14px; - transition: color 0.4s; - } - .todo-list li.completed label { - color: #d9d9d9; - text-decoration: line-through; - } - .todo-list li .destroy { - display: none; - position: absolute; - top: 0; - right: 10px; - bottom: 0; - width: 40px; - height: 40px; - margin: auto 0; - font-size: 30px; - color: #cc9a9a; - transition: color 0.2s ease-out; - cursor: pointer; - } - .todo-list li .destroy:hover { - color: #af5b5e; - } - .todo-list li .destroy:after { - content: '×'; - } - .todo-list li:hover .destroy { - display: block; - } - .todo-list li .edit { - display: none; - } - .todo-list li.editing:last-child { - margin-bottom: -1px; - } - .footer { - color: #777; - position: relative; - padding: 10px 15px; - height: 40px; - text-align: center; - border-top: 1px solid #e6e6e6; - } - .footer:before { - content: ''; - position: absolute; - right: 0; - bottom: 0; - left: 0; - height: 40px; - overflow: hidden; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 8px 0 -3px #f6f6f6, 0 9px 1px -3px rgba(0, 0, 0, 0.2), 0 16px 0 -6px #f6f6f6, 0 17px 2px -6px rgba(0, 0, 0, 0.2); - } - .todo-count { - float: left; - text-align: left; - } - .todo-count strong { - font-weight: 300; - } - .filters { - margin: 0; - padding: 0; - position: relative; - z-index: 1; - list-style: none; - } - .filters li { - display: inline; - } - .filters li a { - color: inherit; - font-size: 12px; - padding: 3px 7px; - text-decoration: none; - border: 1px solid transparent; - border-radius: 3px; - } - .filters li a:hover { - border-color: rgba(175, 47, 47, 0.1); - } - .filters li a.selected { - border-color: rgba(175, 47, 47, 0.2); - } - .clear-completed, - html .clear-completed:active { - float: right; - position: relative; - line-height: 20px; - text-decoration: none; - cursor: pointer; - } - .clear-completed:hover { - text-decoration: underline; - } - .info { - margin: 65px auto 0; - color: #bfbfbf; - font-size: 10px; - text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); - text-align: center; - } - .info p { - line-height: 1; - } - .info a { - color: inherit; - text-decoration: none; - font-weight: 400; - } - .info a:hover { - text-decoration: underline; - } - /* - Hack to remove background from Mobile Safari. - Can't use it globally since it destroys checkboxes in Firefox -*/ - @media screen and (-webkit-min-device-pixel-ratio:0) { - .toggle-all, - .todo-list li .toggle { - background: none; - } - .todo-list li .toggle { - height: 40px; - } - } - @media (max-width: 430px) { - .footer { - height: 50px; - } - .filters { - bottom: 10px; - } - } -} diff --git a/src/views/dashboard/admin/components/TodoList/index.vue b/src/views/dashboard/admin/components/TodoList/index.vue deleted file mode 100644 index 8000d414..00000000 --- a/src/views/dashboard/admin/components/TodoList/index.vue +++ /dev/null @@ -1,127 +0,0 @@ - - - - - diff --git a/src/views/dashboard/admin/components/TransactionTable.vue b/src/views/dashboard/admin/components/TransactionTable.vue deleted file mode 100644 index d07b0edf..00000000 --- a/src/views/dashboard/admin/components/TransactionTable.vue +++ /dev/null @@ -1,55 +0,0 @@ - - - diff --git a/src/views/dashboard/admin/components/mixins/resize.js b/src/views/dashboard/admin/components/mixins/resize.js deleted file mode 100644 index 234953b1..00000000 --- a/src/views/dashboard/admin/components/mixins/resize.js +++ /dev/null @@ -1,55 +0,0 @@ -import { debounce } from '@/utils' - -export default { - data() { - return { - $_sidebarElm: null, - $_resizeHandler: null - } - }, - mounted() { - this.$_resizeHandler = debounce(() => { - if (this.chart) { - this.chart.resize() - } - }, 100) - this.$_initResizeEvent() - this.$_initSidebarResizeEvent() - }, - beforeDestroy() { - this.$_destroyResizeEvent() - this.$_destroySidebarResizeEvent() - }, - // to fixed bug when cached by keep-alive - // https://github.com/PanJiaChen/vue-element-admin/issues/2116 - activated() { - this.$_initResizeEvent() - this.$_initSidebarResizeEvent() - }, - deactivated() { - this.$_destroyResizeEvent() - this.$_destroySidebarResizeEvent() - }, - methods: { - // use $_ for mixins properties - // https://vuejs.org/v2/style-guide/index.html#Private-property-names-essential - $_initResizeEvent() { - window.addEventListener('resize', this.$_resizeHandler) - }, - $_destroyResizeEvent() { - window.removeEventListener('resize', this.$_resizeHandler) - }, - $_sidebarResizeHandler(e) { - if (e.propertyName === 'width') { - this.$_resizeHandler() - } - }, - $_initSidebarResizeEvent() { - this.$_sidebarElm = document.getElementsByClassName('sidebar-container')[0] - this.$_sidebarElm && this.$_sidebarElm.addEventListener('transitionend', this.$_sidebarResizeHandler) - }, - $_destroySidebarResizeEvent() { - this.$_sidebarElm && this.$_sidebarElm.removeEventListener('transitionend', this.$_sidebarResizeHandler) - } - } -} diff --git a/src/views/dashboard/admin/index.vue b/src/views/dashboard/admin/index.vue deleted file mode 100644 index 8cb557be..00000000 --- a/src/views/dashboard/admin/index.vue +++ /dev/null @@ -1,124 +0,0 @@ - - - - - diff --git a/src/views/dashboard/editor/index.vue b/src/views/dashboard/editor/index.vue deleted file mode 100644 index 9723bcce..00000000 --- a/src/views/dashboard/editor/index.vue +++ /dev/null @@ -1,74 +0,0 @@ - - - - - diff --git a/src/views/dashboard/index.vue b/src/views/dashboard/index.vue index 1720ea8f..d7443d86 100644 --- a/src/views/dashboard/index.vue +++ b/src/views/dashboard/index.vue @@ -6,15 +6,13 @@ diff --git a/src/views/documentation/index.vue b/src/views/documentation/index.vue deleted file mode 100644 index d3f77468..00000000 --- a/src/views/documentation/index.vue +++ /dev/null @@ -1,56 +0,0 @@ - - - - - diff --git a/src/views/error-log/components/ErrorTestA.vue b/src/views/error-log/components/ErrorTestA.vue deleted file mode 100644 index 52654e0e..00000000 --- a/src/views/error-log/components/ErrorTestA.vue +++ /dev/null @@ -1,13 +0,0 @@ - - - diff --git a/src/views/error-log/components/ErrorTestB.vue b/src/views/error-log/components/ErrorTestB.vue deleted file mode 100644 index d796beef..00000000 --- a/src/views/error-log/components/ErrorTestB.vue +++ /dev/null @@ -1,11 +0,0 @@ - - - diff --git a/src/views/error-log/index.vue b/src/views/error-log/index.vue deleted file mode 100644 index e999c85b..00000000 --- a/src/views/error-log/index.vue +++ /dev/null @@ -1,32 +0,0 @@ - - - - - diff --git a/src/views/example/components/ArticleDetail.vue b/src/views/example/components/ArticleDetail.vue deleted file mode 100644 index 8aa97339..00000000 --- a/src/views/example/components/ArticleDetail.vue +++ /dev/null @@ -1,289 +0,0 @@ - - - - - diff --git a/src/views/example/components/Dropdown/Comment.vue b/src/views/example/components/Dropdown/Comment.vue deleted file mode 100644 index d34b2b90..00000000 --- a/src/views/example/components/Dropdown/Comment.vue +++ /dev/null @@ -1,41 +0,0 @@ - - - diff --git a/src/views/example/components/Dropdown/Platform.vue b/src/views/example/components/Dropdown/Platform.vue deleted file mode 100644 index 0a527264..00000000 --- a/src/views/example/components/Dropdown/Platform.vue +++ /dev/null @@ -1,46 +0,0 @@ - - - diff --git a/src/views/example/components/Dropdown/SourceUrl.vue b/src/views/example/components/Dropdown/SourceUrl.vue deleted file mode 100644 index 8f47485a..00000000 --- a/src/views/example/components/Dropdown/SourceUrl.vue +++ /dev/null @@ -1,38 +0,0 @@ - - - diff --git a/src/views/example/components/Dropdown/index.js b/src/views/example/components/Dropdown/index.js deleted file mode 100644 index bc0c171b..00000000 --- a/src/views/example/components/Dropdown/index.js +++ /dev/null @@ -1,3 +0,0 @@ -export { default as CommentDropdown } from './Comment' -export { default as PlatformDropdown } from './Platform' -export { default as SourceUrlDropdown } from './SourceUrl' diff --git a/src/views/example/components/Warning.vue b/src/views/example/components/Warning.vue deleted file mode 100644 index 8d2a7e5a..00000000 --- a/src/views/example/components/Warning.vue +++ /dev/null @@ -1,13 +0,0 @@ - - diff --git a/src/views/example/create.vue b/src/views/example/create.vue deleted file mode 100644 index f28ce287..00000000 --- a/src/views/example/create.vue +++ /dev/null @@ -1,13 +0,0 @@ - - - - diff --git a/src/views/example/edit.vue b/src/views/example/edit.vue deleted file mode 100644 index 87b61260..00000000 --- a/src/views/example/edit.vue +++ /dev/null @@ -1,13 +0,0 @@ - - - - diff --git a/src/views/example/list.vue b/src/views/example/list.vue deleted file mode 100644 index 7cdc4ac0..00000000 --- a/src/views/example/list.vue +++ /dev/null @@ -1,112 +0,0 @@ - - - - - diff --git a/src/views/excel/components/AutoWidthOption.vue b/src/views/excel/components/AutoWidthOption.vue deleted file mode 100644 index 9050e659..00000000 --- a/src/views/excel/components/AutoWidthOption.vue +++ /dev/null @@ -1,34 +0,0 @@ - - - diff --git a/src/views/excel/components/BookTypeOption.vue b/src/views/excel/components/BookTypeOption.vue deleted file mode 100644 index af9fed39..00000000 --- a/src/views/excel/components/BookTypeOption.vue +++ /dev/null @@ -1,39 +0,0 @@ - - - diff --git a/src/views/excel/components/FilenameOption.vue b/src/views/excel/components/FilenameOption.vue deleted file mode 100644 index 75092235..00000000 --- a/src/views/excel/components/FilenameOption.vue +++ /dev/null @@ -1,27 +0,0 @@ - - - diff --git a/src/views/excel/export-excel.vue b/src/views/excel/export-excel.vue deleted file mode 100644 index b4d7500b..00000000 --- a/src/views/excel/export-excel.vue +++ /dev/null @@ -1,116 +0,0 @@ - - - - - diff --git a/src/views/excel/merge-header.vue b/src/views/excel/merge-header.vue deleted file mode 100644 index 2646b9d0..00000000 --- a/src/views/excel/merge-header.vue +++ /dev/null @@ -1,101 +0,0 @@ - - - diff --git a/src/views/excel/select-excel.vue b/src/views/excel/select-excel.vue deleted file mode 100644 index 05b85fb8..00000000 --- a/src/views/excel/select-excel.vue +++ /dev/null @@ -1,107 +0,0 @@ - - - diff --git a/src/views/excel/upload-excel.vue b/src/views/excel/upload-excel.vue deleted file mode 100644 index 1772b7fd..00000000 --- a/src/views/excel/upload-excel.vue +++ /dev/null @@ -1,42 +0,0 @@ - - - diff --git a/src/views/guide/index.vue b/src/views/guide/index.vue deleted file mode 100644 index 4897c8fb..00000000 --- a/src/views/guide/index.vue +++ /dev/null @@ -1,36 +0,0 @@ - - - diff --git a/src/views/guide/steps.js b/src/views/guide/steps.js deleted file mode 100644 index 283c672e..00000000 --- a/src/views/guide/steps.js +++ /dev/null @@ -1,53 +0,0 @@ -const steps = [ - { - element: '#hamburger-container', - popover: { - title: 'Hamburger', - description: 'Open && Close sidebar', - position: 'bottom' - } - }, - { - element: '#breadcrumb-container', - popover: { - title: 'Breadcrumb', - description: 'Indicate the current page location', - position: 'bottom' - } - }, - { - element: '#header-search', - popover: { - title: 'Page Search', - description: 'Page search, quick navigation', - position: 'left' - } - }, - { - element: '#screenfull', - popover: { - title: 'Screenfull', - description: 'Set the page into fullscreen', - position: 'left' - } - }, - { - element: '#size-select', - popover: { - title: 'Switch Size', - description: 'Switch the system size', - position: 'left' - } - }, - { - element: '#tags-view-container', - popover: { - title: 'Tags view', - description: 'The history of the page you visited', - position: 'bottom' - }, - padding: 0 - } -] - -export default steps diff --git a/src/views/icons/element-icons.js b/src/views/icons/element-icons.js deleted file mode 100644 index 9ea4d63f..00000000 --- a/src/views/icons/element-icons.js +++ /dev/null @@ -1,3 +0,0 @@ -const elementIcons = ['platform-eleme', 'eleme', 'delete-solid', 'delete', 's-tools', 'setting', 'user-solid', 'user', 'phone', 'phone-outline', 'more', 'more-outline', 'star-on', 'star-off', 's-goods', 'goods', 'warning', 'warning-outline', 'question', 'info', 'remove', 'circle-plus', 'success', 'error', 'zoom-in', 'zoom-out', 'remove-outline', 'circle-plus-outline', 'circle-check', 'circle-close', 's-help', 'help', 'minus', 'plus', 'check', 'close', 'picture', 'picture-outline', 'picture-outline-round', 'upload', 'upload2', 'download', 'camera-solid', 'camera', 'video-camera-solid', 'video-camera', 'message-solid', 'bell', 's-cooperation', 's-order', 's-platform', 's-fold', 's-unfold', 's-operation', 's-promotion', 's-home', 's-release', 's-ticket', 's-management', 's-open', 's-shop', 's-marketing', 's-flag', 's-comment', 's-finance', 's-claim', 's-custom', 's-opportunity', 's-data', 's-check', 's-grid', 'menu', 'share', 'd-caret', 'caret-left', 'caret-right', 'caret-bottom', 'caret-top', 'bottom-left', 'bottom-right', 'back', 'right', 'bottom', 'top', 'top-left', 'top-right', 'arrow-left', 'arrow-right', 'arrow-down', 'arrow-up', 'd-arrow-left', 'd-arrow-right', 'video-pause', 'video-play', 'refresh', 'refresh-right', 'refresh-left', 'finished', 'sort', 'sort-up', 'sort-down', 'rank', 'loading', 'view', 'c-scale-to-original', 'date', 'edit', 'edit-outline', 'folder', 'folder-opened', 'folder-add', 'folder-remove', 'folder-delete', 'folder-checked', 'tickets', 'document-remove', 'document-delete', 'document-copy', 'document-checked', 'document', 'document-add', 'printer', 'paperclip', 'takeaway-box', 'search', 'monitor', 'attract', 'mobile', 'scissors', 'umbrella', 'headset', 'brush', 'mouse', 'coordinate', 'magic-stick', 'reading', 'data-line', 'data-board', 'pie-chart', 'data-analysis', 'collection-tag', 'film', 'suitcase', 'suitcase-1', 'receiving', 'collection', 'files', 'notebook-1', 'notebook-2', 'toilet-paper', 'office-building', 'school', 'table-lamp', 'house', 'no-smoking', 'smoking', 'shopping-cart-full', 'shopping-cart-1', 'shopping-cart-2', 'shopping-bag-1', 'shopping-bag-2', 'sold-out', 'sell', 'present', 'box', 'bank-card', 'money', 'coin', 'wallet', 'discount', 'price-tag', 'news', 'guide', 'male', 'female', 'thumb', 'cpu', 'link', 'connection', 'open', 'turn-off', 'set-up', 'chat-round', 'chat-line-round', 'chat-square', 'chat-dot-round', 'chat-dot-square', 'chat-line-square', 'message', 'postcard', 'position', 'turn-off-microphone', 'microphone', 'close-notification', 'bangzhu', 'time', 'odometer', 'crop', 'aim', 'switch-button', 'full-screen', 'copy-document', 'mic', 'stopwatch', 'medal-1', 'medal', 'trophy', 'trophy-1', 'first-aid-kit', 'discover', 'place', 'location', 'location-outline', 'location-information', 'add-location', 'delete-location', 'map-location', 'alarm-clock', 'timer', 'watch-1', 'watch', 'lock', 'unlock', 'key', 'service', 'mobile-phone', 'bicycle', 'truck', 'ship', 'basketball', 'football', 'soccer', 'baseball', 'wind-power', 'light-rain', 'lightning', 'heavy-rain', 'sunrise', 'sunrise-1', 'sunset', 'sunny', 'cloudy', 'partly-cloudy', 'cloudy-and-sunny', 'moon', 'moon-night', 'dish', 'dish-1', 'food', 'chicken', 'fork-spoon', 'knife-fork', 'burger', 'tableware', 'sugar', 'dessert', 'ice-cream', 'hot-water', 'water-cup', 'coffee-cup', 'cold-drink', 'goblet', 'goblet-full', 'goblet-square', 'goblet-square-full', 'refrigerator', 'grape', 'watermelon', 'cherry', 'apple', 'pear', 'orange', 'coffee', 'ice-tea', 'ice-drink', 'milk-tea', 'potato-strips', 'lollipop', 'ice-cream-square', 'ice-cream-round'] - -export default elementIcons diff --git a/src/views/icons/index.vue b/src/views/icons/index.vue deleted file mode 100644 index 4c483db4..00000000 --- a/src/views/icons/index.vue +++ /dev/null @@ -1,101 +0,0 @@ - - - - - diff --git a/src/views/icons/svg-icons.js b/src/views/icons/svg-icons.js deleted file mode 100644 index 1e3c66d2..00000000 --- a/src/views/icons/svg-icons.js +++ /dev/null @@ -1,10 +0,0 @@ -const req = require.context('../../icons/svg', false, /\.svg$/) -const requireAll = requireContext => requireContext.keys() - -const re = /\.\/(.*)\.svg/ - -const svgIcons = requireAll(req).map(i => { - return i.match(re)[1] -}) - -export default svgIcons diff --git a/src/views/nested/menu1/index.vue b/src/views/nested/menu1/index.vue deleted file mode 100644 index 30cb6701..00000000 --- a/src/views/nested/menu1/index.vue +++ /dev/null @@ -1,7 +0,0 @@ - diff --git a/src/views/nested/menu1/menu1-1/index.vue b/src/views/nested/menu1/menu1-1/index.vue deleted file mode 100644 index 27e173a6..00000000 --- a/src/views/nested/menu1/menu1-1/index.vue +++ /dev/null @@ -1,7 +0,0 @@ - diff --git a/src/views/nested/menu1/menu1-2/index.vue b/src/views/nested/menu1/menu1-2/index.vue deleted file mode 100644 index 0c86276e..00000000 --- a/src/views/nested/menu1/menu1-2/index.vue +++ /dev/null @@ -1,7 +0,0 @@ - diff --git a/src/views/nested/menu1/menu1-2/menu1-2-1/index.vue b/src/views/nested/menu1/menu1-2/menu1-2-1/index.vue deleted file mode 100644 index f87d88f4..00000000 --- a/src/views/nested/menu1/menu1-2/menu1-2-1/index.vue +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/src/views/nested/menu1/menu1-2/menu1-2-2/index.vue b/src/views/nested/menu1/menu1-2/menu1-2-2/index.vue deleted file mode 100644 index d88789f2..00000000 --- a/src/views/nested/menu1/menu1-2/menu1-2-2/index.vue +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/src/views/nested/menu1/menu1-3/index.vue b/src/views/nested/menu1/menu1-3/index.vue deleted file mode 100644 index f7cd0738..00000000 --- a/src/views/nested/menu1/menu1-3/index.vue +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/src/views/nested/menu2/index.vue b/src/views/nested/menu2/index.vue deleted file mode 100644 index 19dd48f0..00000000 --- a/src/views/nested/menu2/index.vue +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/src/views/pdf/content.js b/src/views/pdf/content.js deleted file mode 100644 index e62b1a2b..00000000 --- a/src/views/pdf/content.js +++ /dev/null @@ -1,58 +0,0 @@ -const title = 'Plans for the Next Iteration of Vue.js' - -const content = `

Last week atVue.js LondonI gave a brief sneak peek of what’s coming in the next major version of Vue. This post provides an in-depth overview of the plan.

-

-

Why a new majorversion?

-

Vue 2.0 was releasedexactly two years ago(how time flies!). During this period, the core has remained backwards compatible with five minor releases. We’ve accumulated a number of ideas that would bring improvements, but they were held off because they would result in breaking changes. At the same time, the JavaScript ecosystem and the language itself has been evolving rapidly. There are greatly improved tools that could enhance our workflow, and many new language features that could unlock simpler, more complete, and more efficient solutions to the problems Vue is trying to solve. What’s more exciting is that we are seeing ES2015 support becoming a baseline for all major evergreen browsers. Vue 3.0 aims to leverage these new language features to make Vue core smaller, faster, and more powerful.

-

Vue 3.0 is currently in prototyping phase, and we have already implemented a runtime close to feature-parity with 2.x.Many of the items listed below are either already implemented, or confirmed to be feasible. Ones that are not yet implemented or still in exploration phase are marked with a *.

-

The Details

-

High-Level APIChanges

-
TL;DR: Everything except render function API and scoped-slots syntax will either remain the same or can be made 2.x compatible via a compatibility build.
-

Since it’s a new major, there is going to be some breaking changes. However, we take backwards compatibility seriously, so we want to start communicating these changes as soon as possible. Here’s the currently planned public API changes:

- -

Source Code Architecture

-
TL;DR: better decoupled internal modules, TypeScript, and a codebase that is easier to contribute to.
-

We are re-writing 3.0 from the ground up for a cleaner and more maintainable architecture, in particular trying to make it easier to contribute to. We are breaking some internal functionalities into individual packages in order to isolate the scope of complexity. For example, the observer module will become its own package, with its own public API and tests. Note this does not affect framework-level API— you will not have to manually import individual bits from multiple packages in order to use Vue. Instead, the final Vue package is assembled using these internal packages.

-

The codebase is also now written in TypeScript. Although this will make proficiency in TypeScript a pre-requisite for contributing to the new codebase, we believe the type information and IDE support will actually make it easier for a new contributor to make meaningful contributions.

-

Decoupling the observer and scheduler into separate packages also allows us to easily experiment with alternative implementations of these parts. For example, we can implement an IE11 compatible observer implementation with the same API, or an alternative scheduler that leveragesrequestIdleCallbackto yield to the browser during long updates.*

-

-

Observation Mechanism

-
TL;DR: more complete, precise, efficient and debuggable reactivity tracking & API for creating observables.
-

3.0 will ship with a Proxy-based observer implementation that provides reactivity tracking with full language coverage. This eliminates a number of limitations of Vue 2’s current implementation based onObject.defineProperty:

-

The new observer also features the following:

-

Easily understand why a component is re-rendering

-

-

Other Runtime Improvements

-
TL;DR: smaller, faster, tree-shakable features, fragments & portals, custom renderer API.
-

Compiler Improvements*

-
TL;DR: tree-shaking friendly output, more AOT optimizations, parser with better error info and source map support.
-

IE11 Support*

-
TL;DR: it will be supported, but in a separate build with the same reactivity limitations of Vue 2.x.
-

The new codebase currently targets evergreen browsers only and assumes baseline native ES2015 support. But alas, we know a lot of our users still need to support IE11 for the foreseeable future. Most of the ES2015 features used can be transpiled / polyfilled for IE11, with the exception for Proxies. Our plan is to implement an alternative observer with the same API, but using the good old ES5Object.definePropertyAPI. A separate build of Vue 3.x will be distributed using this observer implementation. However, this build will be subject to the same change detection caveats of Vue 2.x and thus not fully compatible with the “modern” build of 3.x. We are aware that this imposes some inconvenience for library authors as they will need to be aware of compatibility for two different builds, but we will make sure to provide clear guidelines on this when we reach that stage.

-

How Do We GetThere

-

First of all, although we are announcing it today, we do not have a definitive timeline yet. What we do know at the moment is the steps we will be taking to get there:

-

1. Internal Feedback for the Runtime Prototype

-

This is the phase we are in right now. Currently, we already have a working runtime prototype that includes the new observer, Virtual DOM and component implementation. We have invited a group of authors of influential community projects to provide feedback for the internal changes, and would like to make sure they are comfortable with the changes before moving forward. We want to ensure that important libraries in the ecosystem will be ready at the same time when we release 3.0, so that users relying on those projects can upgrade easily.

-

2. Public Feedback viaRFCs

-

Once we gain a certain level of confidence in the new design, for each breaking change we will be opening a dedicated RFC issue which includes:

-

We will anticipate public feedback from the wider community to help us consolidate these ideas.

-

3. Introduce Compatible Features in 2.x &2.x-next

-

We are not forgetting about 2.x! In fact, we plan to use 2.x to progressively accustom users to the new changes. We will be gradually introducing confirmed API changes into 2.x via opt-in adaptors, and 2.x-next will allow users to try out the new Proxy-based observer.

-

The last minor release in 2.x will become LTS and continue to receive bug and security fixes for 18 months when 3.0 is released.

-

4. AlphaPhase

-

Next, we will finish up the compiler and server-side rendering parts of 3.0 and start making alpha releases. These will mostly be for stability testing purposes in small greenfield apps.

-

5. BetaPhase

-

During beta phase, our main goal is updating support libraries and tools like Vue Router, Vuex, Vue CLI, Vue DevTools and make sure they work smoothly with the new core. We will also be working with major library authors from the community to help them get ready for 3.0.

-

6. RCPhase

-

Once we consider the API and codebase stable, we will enter RC phase with API freeze. During this phase we will also work on a “compat build”: a build of 3.0 that includes compatibility layers for 2.x API. This build will also ship with a flag you can turn on to emit deprecation warnings for 2.x API usage in your app. The compat build can be used as a guide to upgrade your app to 3.0.

-

7. IE11build

-

The last task before the final release will be the IE11 compatibility build as mentioned above.

-

8. FinalRelease

-

In all honesty, we don’t know when this will happen yet, but likely in 2019. Again, we care more about shipping something that is solid and stable rather than hitting specific dates. There is a lot of work to be done, but we are excited for what’s coming next!

` - -const data = { - title, - content -} - -export default data diff --git a/src/views/pdf/download.vue b/src/views/pdf/download.vue deleted file mode 100644 index a348c697..00000000 --- a/src/views/pdf/download.vue +++ /dev/null @@ -1,201 +0,0 @@ - - - - - diff --git a/src/views/pdf/index.vue b/src/views/pdf/index.vue deleted file mode 100644 index 86278b38..00000000 --- a/src/views/pdf/index.vue +++ /dev/null @@ -1,13 +0,0 @@ - - diff --git a/src/views/permission/components/SwitchRoles.vue b/src/views/permission/components/SwitchRoles.vue deleted file mode 100644 index 9fabbe19..00000000 --- a/src/views/permission/components/SwitchRoles.vue +++ /dev/null @@ -1,32 +0,0 @@ - - - diff --git a/src/views/permission/directive.vue b/src/views/permission/directive.vue deleted file mode 100644 index 85478895..00000000 --- a/src/views/permission/directive.vue +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - diff --git a/src/views/permission/page.vue b/src/views/permission/page.vue deleted file mode 100644 index 5291a782..00000000 --- a/src/views/permission/page.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/src/views/permission/role.vue b/src/views/permission/role.vue deleted file mode 100644 index cd7ecd4c..00000000 --- a/src/views/permission/role.vue +++ /dev/null @@ -1,270 +0,0 @@ - - - - - diff --git a/src/views/qiniu/upload.vue b/src/views/qiniu/upload.vue deleted file mode 100644 index 9dc9aeda..00000000 --- a/src/views/qiniu/upload.vue +++ /dev/null @@ -1,41 +0,0 @@ - - - diff --git a/src/views/tab/components/TabPane.vue b/src/views/tab/components/TabPane.vue deleted file mode 100644 index 3fb1439e..00000000 --- a/src/views/tab/components/TabPane.vue +++ /dev/null @@ -1,103 +0,0 @@ - - - - diff --git a/src/views/tab/index.vue b/src/views/tab/index.vue deleted file mode 100644 index 862a160f..00000000 --- a/src/views/tab/index.vue +++ /dev/null @@ -1,57 +0,0 @@ - - - - - diff --git a/src/views/table/complex-table.vue b/src/views/table/complex-table.vue deleted file mode 100644 index 295c5fc4..00000000 --- a/src/views/table/complex-table.vue +++ /dev/null @@ -1,379 +0,0 @@ - - - diff --git a/src/views/table/drag-table.vue b/src/views/table/drag-table.vue deleted file mode 100644 index 3b5c890a..00000000 --- a/src/views/table/drag-table.vue +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - diff --git a/src/views/table/dynamic-table/components/FixedThead.vue b/src/views/table/dynamic-table/components/FixedThead.vue deleted file mode 100644 index c3deb925..00000000 --- a/src/views/table/dynamic-table/components/FixedThead.vue +++ /dev/null @@ -1,62 +0,0 @@ - - - - diff --git a/src/views/table/dynamic-table/components/UnfixedThead.vue b/src/views/table/dynamic-table/components/UnfixedThead.vue deleted file mode 100644 index 831b070a..00000000 --- a/src/views/table/dynamic-table/components/UnfixedThead.vue +++ /dev/null @@ -1,50 +0,0 @@ - - - diff --git a/src/views/table/dynamic-table/index.vue b/src/views/table/dynamic-table/index.vue deleted file mode 100644 index 5a4dd363..00000000 --- a/src/views/table/dynamic-table/index.vue +++ /dev/null @@ -1,24 +0,0 @@ - - - - diff --git a/src/views/table/inline-edit-table.vue b/src/views/table/inline-edit-table.vue deleted file mode 100644 index 31e0065f..00000000 --- a/src/views/table/inline-edit-table.vue +++ /dev/null @@ -1,149 +0,0 @@ - - - - - diff --git a/src/views/theme/index.vue b/src/views/theme/index.vue deleted file mode 100644 index 0af7711a..00000000 --- a/src/views/theme/index.vue +++ /dev/null @@ -1,120 +0,0 @@ - - - - - diff --git a/src/views/zip/index.vue b/src/views/zip/index.vue deleted file mode 100644 index 412608f8..00000000 --- a/src/views/zip/index.vue +++ /dev/null @@ -1,77 +0,0 @@ - - -