vue 初學者報錯總結

1 no-undef大小寫錯誤


2 key-spacing 屬性與值得間隔錯誤


3 no-trailing-spaces 空行的錯誤


4 quotes 單雙引號的錯誤


5 comma-dangle 多餘的,如


new Vue({
  el: '#app',
  data: {
    word: '你好'
  },//這個的逗號是必須得
  components: {
    'v-header': myheader
  }//這裏的不能有逗號,否則報這個comma-dangle錯誤
})


6 semi 多餘的分號錯誤


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章