vue element new vue const

new Vue{

el:"app",

}

=========

const app = new Vue({

  router,

  data:{....}

}).$mount('#app')

const router = new VueRouter({

  routes

});

const routes = [

{path:'/txt', component: Txt}

];

const Txt = { template:'#txt' };

原文地址:https://www.cnblogs.com/JamyWong/p/9871628.html