慕雪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入门
146742 学习 · 657 问题
相似问题