标签:new set 模版 base com false tip -o out
main.js
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from ‘vue‘
import App from ‘./App‘
import router from ‘./router‘
//配置开发模式
Vue.config.productionTip = false
/* eslint-disable no-new */
//创建实例
new Vue({
el: ‘#app‘,
router,
components: { App },
template: ‘<App/>‘
})
2.//模版语法(Mustache){{}}只能存在单行语句
标签:new set 模版 base com false tip -o out
原文地址:https://www.cnblogs.com/xiao-peng-ji/p/11299070.html