摘要: Sass变量的定义(永远不要使用@extend!) $fontSize:12px; body{ font-size:$fontSize; } 特殊变量:如果变量嵌套在字符串中,则需要写在 #{} 符号里面,如: $top:top; div{ margin-#{$top}:10px } 变量的调用 . 阅读全文
posted @ 2022-01-08 11:25 MrSlow 阅读(100) 评论(0) 推荐(0)
摘要: 开始使用 /*不使用script-setup语法糖*/ <script> import { defineComponent } from "vue" export default defineComponent({ name: 'app', }) </script> ​ /*使用script-set 阅读全文
posted @ 2022-01-08 10:47 MrSlow 阅读(1676) 评论(0) 推荐(1)