[Vue warn]: Property or method "title" is not defined on the instance but referenced during render.為什么提示沒有定義呢?求解
<template>??<div>??<p>標題</p>??<input?type="text"?v-model="title">??<p>內容</p>??<input?type="text"?v-model="content">??<div>???<button?type="button"?@click="add()">?添加</button>??</div>??</div></template><script>import?store?from?'@/store'export?default{ name:"Add", store, date()?{??return{??title:'',??content:'',??} }, methods:{ add()?{????????store.commit('addItem',{????????title:this.title,????????content:this.content????????})????}}}</script>
2020-01-17
同學,你的data寫成了date了,所以會報錯。。。。。?