错误时类绑定(bind)-6ren"> 错误时类绑定(bind)- Game Board {{ item.number }} expo-6ren">
gpt4 book ai didi

vue.js - (Vue3) [Vue warn] : Property "..." was accessed during render but is not defined on instance. 在 错误时类绑定(bind)

转载 作者:行者123 更新时间:2023-12-03 23:00:43 39 4
gpt4 key购买 nike

<template>
<div class="container">
<div class="gameboard">
<div class="title">Game Board</div>
<div class="main">
<div
v-for="item in boardFields"
:key="item.number"
:class="{ notclicked: !isclicked, clicked: isclicked }"
@click="toggleClick(item)"
>
{{ item.number }}
</div>
</div>
</div>
</div>
</template>


<script>
export default {
name: "App",
components: {},

data() {
return {
boardFields: [],
};
},

methods: {
toggleClick(item) {
item.isclicked = !item.isclicked;
},
},
mounted() {
this.boardFields = [...Array(49)].map((_, i) => ({
number: i + 1,
isclicked: false,
}));
},
};
</script>

<style>

.notclicked {
font-size: 3.5rem;
background-color: gray;
display: flex;
justify-content: center;
align-items: center;
margin: 0.3rem;
width: calc(40.4rem / 7);
height: calc(40.4rem / 7);
border-radius: 0.8rem;
}

.clicked {
font-size: 3.5rem;
background-color: green;
display: flex;
justify-content: center;
align-items: center;
margin: 0.3rem;
width: calc(40.4rem / 7);
height: calc(40.4rem / 7);
border-radius: 0.8rem;
}

</style>

我想通过单击事件通过类绑定(bind)到每个对象中的“isclicked” bool 值来更改每个“boardFields 对象”div 的类,但我收到以下错误消息:
[Vue 警告]:在渲染期间访问了属性“isclicked”,但未在实例上定义。

这与对象是在mounted() 中创建的事实有关吗?或者是别的什么?
感谢任何帮助。

最佳答案

问题出在 class-binding :

:class="{ notclicked: !item.isclicked, clicked: item.isclicked }"

关于vue.js - (Vue3) [Vue warn] : Property "..." was accessed during render but is not defined on instance. 在 <App> 错误时类绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65944495/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com