// html 模板 template <span class="red" :style="styleVar" @click="add">as</span> // js data() {
return {
styleVar: {
"--colorBlue": "blue", "--colorRed": "red", "--fontSize": "30px", "--fontSizeTest": "30px", }, size: 30 }; }, // methods add () {
this.size++ this.styleVar['--fontSize'] = this.size + 'px' } // css .red {
color: var(--colorRed); font-size: var(--fontSize); }
发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/223152.html原文链接:https://javaforall.net
