<script> export default { props:["n"], data(){ return{ index:0 } }, methods:{ change1(){ // this.n+=1 this.$emit("change",this.n+1) } ...
確定! 回上一頁