mirror of
https://github.com/dataease/dataease.git
synced 2025-02-24 11:32:57 +08:00
feat(嵌入式): div嵌入支持新增仪表板和新增数据大屏
This commit is contained in:
parent
9f6b9d6ad1
commit
0543cf35da
@ -2,7 +2,22 @@ import { createRouter, createWebHashHistory } from 'vue-router'
|
||||
import type { RouteRecordRaw } from 'vue-router'
|
||||
import type { App } from 'vue'
|
||||
|
||||
export const routes: AppRouteRecordRaw[] = []
|
||||
export const routes: AppRouteRecordRaw[] = [
|
||||
{
|
||||
path: '/dvCanvas',
|
||||
name: 'dvCanvas',
|
||||
hidden: true,
|
||||
meta: {},
|
||||
component: () => import('@/views/data-visualization/index.vue')
|
||||
},
|
||||
{
|
||||
path: '/dashboard',
|
||||
name: 'dashboard',
|
||||
hidden: true,
|
||||
meta: {},
|
||||
component: () => import('@/views/dashboard/index.vue')
|
||||
}
|
||||
]
|
||||
|
||||
const router = createRouter({
|
||||
history: createWebHashHistory(),
|
||||
|
Loading…
Reference in New Issue
Block a user