ESLintのDisallow new For Side Effects (no-new)ルールが"error"
に設定されている場合、次の書き方だとエラーになる。
new Vue({
el: '#app',
...
})
次のように$mount
を使ってマウントすれば、その問題を回避できる。
const app = new Vue({
...
})
app.$mount('#app')
Go to list of users who liked
More than 5 years have passed since last update.
ESLintのDisallow new For Side Effects (no-new)ルールが"error"
に設定されている場合、次の書き方だとエラーになる。
new Vue({
el: '#app',
...
})
次のように$mount
を使ってマウントすれば、その問題を回避できる。
const app = new Vue({
...
})
app.$mount('#app')
Register as a new user and use Qiita more conveniently
Go to list of users who liked