vue style scoped注意点
2019-07-13 本文已影响0人
放任自由f0
@import '../css/bootstrap.css';
<style scoped>
@import '../css/bootstrap.css';
</style>
会无效
替换为<style src="../css/bootstrap.css" scoped>
</style>
@import '../css/bootstrap.css';
<style scoped>
@import '../css/bootstrap.css';
</style>
会无效
替换为<style src="../css/bootstrap.css" scoped>
</style>