vue添加css样式的方式

vue添加css样式的方式

1、在.vue文件中引入css

<style scoped lang="scss" type="text/scss">   
  @import "../css/style.css";
</style>

 

2、直接在<style>中写

<style scoped lang="scss" type="text/scss">   
    .style {
        color: #000;
        ...
    }
</style>

 

3、不建议直接在元素标签上写样式,不方便后期维护

posted @ 2023-02-02 14:43  慕容冰菡  阅读(303)  评论(0编辑  收藏  举报