慕雪6264854
2022-07-14 15:22
<template>
<div>
<div>
<input v-model="inputValue"/>
<button @click="handlsSubmit">提交</button>
</div>
<ul>
</ul>
</div>
</template>
<script>
export default {
import TodoItem from './components/HelloWorld'
data: function () {
components: {
'todo-item': HelloWorld
},
return {
inputValue: '',
list: []
}
},
methods: {
handlsSubmit () {
this.list.push(this.inputValue)
}
}
}
</script>
<style>
</style>
import TodoItem from './components/HelloWorld'
应该放在
export default {之前
vue2.5入门
147409 学习 · 675 问题
相似问题