Vue components without webpack/npm/yarn

前端 未结 2 648
无人共我
无人共我 2021-01-21 07:56

I know with vue-cli importing components is really simple. However, would it be possible to import components to a vue project that is not using vue-cli?

For example my

2条回答
  •  鱼传尺愫
    2021-01-21 08:39

    import { Btn } from 'mdbvue'

    From the codes u posted, u already have used es6 modules. So at least you should use webpack with babel-loader, otherwise, the browser will not support the grammar above.

提交回复
热议问题