nuxt-vue-material icon indicating copy to clipboard operation
nuxt-vue-material copied to clipboard

css: false not working

Open alejosky opened this issue 3 years ago • 0 comments

As the title says. Tested in a fresh installation of NUXT.

nuxt.config.js

    ['nuxt-vue-material', {
      css: false,
      theme: 'default',
      components: [ 'MdRadio', 'MdMenu', 'MdContent', 'MdList', 'MdButton', 'MdToolbar',]
    }],    

creates...

.nuxt/vue-material.js

import Vue from 'vue'
import 'vue-material/dist/vue-material.min.css'

  import  { MdRadio,MdMenu,MdContent,MdList,MdButton,MdToolbar } from 'vue-material/dist/components'

    Vue.use(MdRadio)

    Vue.use(MdMenu)

    Vue.use(MdContent)

    Vue.use(MdList)

    Vue.use(MdButton)

    Vue.use(MdToolbar)

... but I need to get rid of import 'vue-material/dist/vue-material.min.css'

Any ideas?

alejosky avatar Mar 31 '21 14:03 alejosky