Vue.js:Templates should only be responsible for mapping the state to the UI.
最近才開始研究 Vue.js
但因為JavaScript以前就寫的少
所以一切都在趺跌撞撞的狀態
就連芝麻小豆般的錯誤都可以debug一天一夜
這二天好不容易搭配 Vue-resource 成功到後端資料庫撈出資料
前端也可以渲染出資料
但Chrome的Console就是會出現一大段的錯誤
Templates should only be responsible for mapping the state to the UI. Avoid placing tags with side-effects in your templates, such as <script>, as they will not be parsed.
上網查找了一下
這樣子的錯誤通常是因為HTML的標籤不成對所造的
所以自己再重新檢查後
發現我的<table>少了一對</table>
補上後就好了
原來是自已在耍笨!!
近期迴響