作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用带有 typescript 的 Vue 3 Composition API 构建一个基本的待办事项列表应用程序。我之前为我的组件配置了设置函数以使用 ref
处理传入 listItems
的用户输入的 react 性的方法大批。现在我正在尝试重构我的设置函数以使用 reactive
方法,将我的待办事项应用程序的属性排列为一个对象。在我创建的状态对象中,我初始化了 newTodo
作为空字符串,listItems
作为字符串数组。 addTodo
然后调用函数将用户输入的 newTodo 值推送到 listItems 数组中。但是,通过此设置,我现在收到一个解析错误,指出需要一个标识符。此错误似乎针对状态对象中的 listItems 属性:listItems: <string[]>[]
.我想假设这意味着需要将一个 id 添加到状态对象以便附加到每个列表项,但我不确定如何动态处理它。知道如何解决这个问题吗?见下面的代码:
模板
<template>
<div class="container">
<form @submit.prevent="addTodo()">
<label>New ToDo</label>
<input
v-model="state.newTodo"
name="newTodo"
autocomplete="off"
>
<button>Add ToDo</button>
</form>
<div class="content">
<ul>
<li v-for="listItem in state.listItems" :key="listItem">
<h3>{{ listItem }}</h3>
</li>
</ul>
</div>
</div>
</template>
脚本
<script lang="ts">
import { defineComponent, reactive } from 'vue';
export default defineComponent({
name: 'Form',
setup() {
const state = reactive({
newTodo: '',
listItems: <string[]>[]
})
const addTodo = () => {
state.listItems.push(state.newTodo)
state.newTodo = ''
}
return { state, addTodo }
}
});
</script>
最佳答案
你必须像这样在 reactive
中使用泛型:
const state = reactive<{ newTodo: string; listItems: string[] }>({
newTodo: "",
listItems: [],
});
您还可以像这样转换 listItems
状态:
const state = reactive({
newTodo: "",
listItems: [] as string[],
});
但我认为第一种方案更好
关于typescript - 如何使用响应式(Reactive)方法设置 Vue 3 Composition API(Typescript)待办事项列表应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70732457/
我是一名优秀的程序员,十分优秀!