<template>
<btn :color="color" @click="toggleColor">{{btnmsg}}</btn>
</template>
<script>
import { Btn } from 'chico'
export default = {
name: 'AButton',
componenents: {
Btn
},
data () {
return {
btnmsg: 'Legia pany'
colors: ['blue', 'black', 'green', 'organge', 'teal', 'cyan', 'yellow', 'white'],
color: 'red'
}
},
methods: {
toggleColor () {
this.color = this.colors[Math.floor(Math.random() * Math.floor(this.colors.length))]
}
}
</script>
&#39; Btn&#39;来自ChicoFamily就是这样的
<template>
<button :is="tag" :class="[className, {'active': active}]" :type="type" :role="role" ">
<slot></slot>
</button>
</template>
<script>
import classNames from 'classnames';
export default {
props: {
tag: {
type: String,
default: "button"
},
color: {
type: String,
default: "default"
...it takes hellotta props...
},
data () {
return {
className: classNames(
this.floating ? 'btn-floating' : 'btn',
this.outline ? 'btn-outline-' + this.outline : this.flat ? 'btn-flat' : this.transparent ? '' : 'btn-' + this.color,
...classes derived from these props...
)
};
}
};
</script>
是的,它是一个按钮,当点击时,应该改变它的颜色。点击它确实改变了传递的道具,但实际上并没有重新渲染按钮。我问的是这个问题,因为我觉得Vue2机制有一些更大的东西让我望而却步。
为什么传递不同的道具不能重新渲染这个可爱的婴儿按钮? 如何正确地做到这一点?
Best,Paco
[编辑:] Btn的颜色来自于从道具派生的Bootstrap类。可以是它获得了正确的道具,但是className机制没有赶上吗?
答案 0 :(得分:1)
您的颜色不具有反应性,因为您将其设置为data
而不是computed
。
你这样做的方式,className
将在创建实例时设置一次。
每当您更改状态中的某个道具时,只需要对className
进行重新评估,您就必须使用此computed property
:
Btn组件:
export default {
props: {
[...]
},
computed: {
className() {
return classNames(
this.floating ? 'btn-floating' : 'btn',
this.outline ? 'btn-outline-' + this.outline : this.flat ? 'btn-flat' : this.transparent ? '' : 'btn-' + this.color);
);
},
},
}