怎麼修改elelment-ui的樣式

小秋菇娘發表於2019-05-24
<template>
  <div id="box">
   
  </div>
</template>

<script>

export default {
  components: {
   
  },
  props: {},
  data() {
    return {
    
    };
  },
  watch: {},
  computed: {},
  methods: {
   
   
  },
  created() {
   
  },
  mounted() {},
  directives: {}
};
</script>
<style lang="scss" scoped>
#box /deep/ {
 
  
}
</style>

我們加個深度作用選擇器/deep/就行了,因為我們在頁面子元件中都使用了scoped,所以修改樣式並不會影響到其他頁面

相關文章