You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
631 B
20 lines
631 B
import { createApp } from 'vue'
|
|
import { createWebHashHistory, createRouter } from 'vue-router'
|
|
import App from './App.vue'
|
|
import Antd from 'ant-design-vue';
|
|
import TestFeeder from './components/TestFeeder.vue';
|
|
import TestTubePreProcess from './components/TestTubePreProcess.vue';
|
|
import './style/app.css'
|
|
|
|
const router = createRouter({
|
|
history: createWebHashHistory(),
|
|
routes : [
|
|
{name:'feeder', path:'/feeder', component:TestFeeder},
|
|
{name:'tube-pre-process', path:'/tube-pre-process', component:TestTubePreProcess},
|
|
],
|
|
})
|
|
|
|
let app = createApp(App)
|
|
app.use(router);
|
|
app.use(Antd);
|
|
app.mount('#app')
|