quasar-template-meteor icon indicating copy to clipboard operation
quasar-template-meteor copied to clipboard

Problem with `import { Quasar } from 'quasar'`

Open thearabbit opened this issue 5 years ago • 3 comments
trafficstars

It don't work (import with demand)

import {
  Quasar,
  Notify,
  ...
} from 'quasar'

Vue.use(Quasar, {
  components: {},
  plugins: {
    Notify,
...
  },
  directives: {
...
  },
})

But work fine with (It mean that import all???)

import Quasar, {
  Notify,
  ...
} from 'quasar'

thearabbit avatar Feb 17 '20 14:02 thearabbit

I'm sorry but I don't know the answer

mwarren2 avatar Feb 17 '20 14:02 mwarren2

Thanks for your reply. By document

image

thearabbit avatar Feb 17 '20 23:02 thearabbit

This error

image

thearabbit avatar Feb 17 '20 23:02 thearabbit