Vue introduces css and matters needing attention

In the component:

<style scoped>
  @import  '../../static/css/xx.css';   // “ ;”必须有
</style>

Note: If you use the following methods, all components will be quoted

<script>
    import  '../../static/css/xx.css'
</script >

Guess you like

Origin blog.csdn.net/qq_41353397/article/details/113062654