Vue 错误提示 Do not use 'new' for side effects
在 new Vue 在ESLint报错 Do not use 'new' for side effects方法一在new Vue上加/* eslint-disable no-new */这句注释可以绕过规则检测/* eslint-disable no-new */new Vue({el: '#app',router,components: { App },...
·
在 new Vue 在ESLint报错 Do not use 'new' for side effects
方法一
在new Vue上加/* eslint-disable no-new */
这句注释可以绕过规则检测
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
components: { App },
template: '<App/>'
})
方法二
可以用以下方法代替上面
let vm = new Vue({
router,
el: '#app',
render: h => h(App)
})
Vue.use({
vm
})
更多推荐
已为社区贡献6条内容
所有评论(0)