我正在使用 Vue.js 3.0 编写一个 Vue.js 应用程序。我用它作为学习组合 API 的一种方式。我不清楚的一件事是如何在更新商店值时有条件地更新我的组件 UI。为了演示我的问题,我创建了这个 fiddle。代码在这里详细说明:
JavaScript
const store = {
state: reactive({
result = null
}),
generateNewValue() {
this.state.result = Math.floor(Math.random() * 10);
}
};
const MyApp = {
setup() {
return {
}
}
}
const myApp = Vue.createApp(MyApp)
myApp.component("banner",
{
template: '<button @click="onGenerateClick">generate</button>',
setup(props) {
console.log('setting up...');
},
methods: {
onGenerateClick() {
store.generateNewValue();
}
}
}
);
myApp.component("content", {
template: '<div><span>Content</span><button @click="onGenerateClick">generate</button></div>',
methods: {
onGenerateClick() {
store.generateNewValue();
}
}
});
myApp.mount('#my-vue')
HTML
<div id="my-vue">
<banner></banner>
<hr />
<content></content>
</div>
CSS
.even-banner {
background-color:navy;
color: #fff;
}
.even-content {
background-color:blue;
color: #fff;
}
.odd-banner {
background-color:maroon;
color:#fff;
}
.odd-content {
background-color:red;
color:#fff;
}
当我单击“生成”按钮时,会生成一个随机数。如果该数字是偶数,我想将content
div 设置为使用even
CSS 类。如果是奇数,我想应用odd
CSS 类。我有点卡住了。
我的问题是,我可以在全局存储中成功设置状态值。但是,我不知道如何对组件中的属性值更改做出反应。watchEffect
我在我的setup
函数中添加了一个, 。但是,这并不能让我访问单个组件本身的状态。我试图在每个组件中找出一种方法来说“嘿,当商店中的这个属性发生变化时,像这样更新 UI。”。
我错过了什么?