Rumah > Artikel > hujung hadapan web > Vue.js的单位件组件
这次给大家带来Vue.js的单位件组件,使用Vue.js单位件组件的注意事项有哪些,下面就是实战案例,一起来看一下。
scoped:局部的
如果没有用scoped,那么该样式就会泄漏致全局(所有引入该组件的父组件都会引入这样的样式)
可以根据实际情况,具体需求,决定是否使用 scoped 修饰
<!-- Add "scoped" attribute to limit CSS to this component only --><style scoped>h1, h2 { font-weight: normal; } ......</style>
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
Atas ialah kandungan terperinci Vue.js的单位件组件. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!