mirror of https://github.com/EasyDarwin/EasyDarwin
15 lines
209 B
JavaScript
15 lines
209 B
JavaScript
![]() |
import Vue from 'vue'
|
||
|
import store from "./store";
|
||
|
import router from './router'
|
||
|
|
||
|
|
||
|
new Vue({
|
||
|
el: '#app',
|
||
|
store,
|
||
|
router,
|
||
|
template: `
|
||
|
<transition>
|
||
|
<router-view></router-view>
|
||
|
</transition>
|
||
|
`
|
||
|
})
|