首页 > 其他分享 >【Vue2-04】scoped样式

【Vue2-04】scoped样式

时间:2022-11-13 19:33:05浏览次数:45  
标签:scoped 04 样式 default export Vue2

scoped样式

作用:让样式在局部生效,防止冲突

写法:<style scoped>

<template>
  <div>
      
  </div>
</template>

<script>
    export default {
       
    }
</script>

<style scoped>

</style>

标签:scoped,04,样式,default,export,Vue2
From: https://www.cnblogs.com/keyongkang/p/16886700.html

相关文章