前些天發現了一個巨牛的人工智能學習網站,通俗易懂,風趣幽默,忍不住分享一下給大家。點擊跳轉到教程。
代碼:
<template><div id="app"><!-- JSON方式使用樣式 --><div v-bind:style="{ color: activeColor, fontSize: fontSize + 'px' }">樣式使用小例</div><!-- 原始樣式使用 --><div style="color: green; font-size: 18px;">此行樣式同于上一行</div><!-- 對象方式使用樣式 --><div v-bind:style="styleObject">樣式同于上2行 </div><!-- 數組方式使用樣式 --><div v-bind:style="[styleObject, overridingStyles]">我只是在前面基礎上把字體加粗</div></div>
</template><script>export default {data () {return {activeColor: 'green',fontSize: 18,styleObject: {color: 'green',fontSize: '18px'},overridingStyles: {'font-weight': 'bold'}}}}
</script>
運行效果:(紅框中)