name: "BtnCertificate",
props: ['certificate', 'show'],
computed: {
general_color_style: () => {
console.log(this);
return `background-color: red`
}
},
created() {
this.settings = this.$store.state.settings;
},
data: () => ({
settings: null,
})
Почему в computed this === undefined?