PluginProbe
ezCache / trunk
ezCache vtrunk
2.6.5 2.6.4 2.6.2 2.6.3 2.6.1 2.6.0 2.5.6 2.5.5 2.5.4 2.5.3 2.5.2 2.5.1 2.5 2.2.1 2.2.2 trunk 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.3 1.3.1 1.3.10 1.3.11 All 49 releases
ezcache / assets / src / main.js

main.js in ezCache trunk, at assets/src/main.js

22 lines 658 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { createApp } from 'vue'
2 import { createRouter, createWebHashHistory } from 'vue-router'
3 import App from './App.vue'
4 import Dashboard from './views/Dashboard.vue'
5 import Settings from './views/Settings.vue'
6 import Performance from './views/Performance.vue'
7 import Advanced from './views/Advanced.vue'
8
9 const router = createRouter({
10 history: createWebHashHistory(),
11 routes: [
12 { path: '/', component: Dashboard },
13 { path: '/settings', component: Settings },
14 { path: '/performance', component: Performance },
15 { path: '/advanced', component: Advanced },
16 ]
17 })
18
19 const app = createApp(App)
20 app.use(router)
21 app.mount('#ezcache-options')
22