howdylikes

Google Developersってわかりづらいよね

2016-11-01から1ヶ月間の記事一覧

Failed to mount component: template or render function not defined. (found in root instance)

Vue.jsを使っていてエラーが出たのでメモ [Vue warn]: Failed to mount component: template or render function not defined. (found in root instance) このページに書いてあるようにwebpackの設定でresolveを追加 vuejs.org 上記エラーを解決したら以下の…

Parsing error: 'import' and 'export' may appear only with 'sourceType: module'

ESLint使っているときに表題のエラーが発生 .eslintrcに以下の設定を追加で解決 "parserOptions": { "sourceType": "module" }, 参考 https://github.com/AtomLinter/linter-eslint/issues/462