在meteor中使用vue2.x
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
437 B

4 년 전
import Vue from 'vue'
4 년 전
import { RouterFactory, nativeScrollBehavior } from 'meteor/akryum:vue-router2'
4 년 전
import '../imports/ui/plugins'
4 년 전
import './routes'
4 년 전
import App from '../imports/ui/App.vue'
Meteor.startup(() => {
4 년 전
const routerFactory = new RouterFactory({
mode: 'history',
scrollBehavior: nativeScrollBehavior,
})
const router = routerFactory.create()
4 년 전
new Vue({
el: '#app',
4 년 전
router: router,
4 년 전
...App,
})
})