[Vuejs]-Installing and using Sweet Modal Vue npm package in Laravel 5.6

0👍

You can install component globally

const SweetModal = require('sweet-modal-vue/plugin.js').default
Vue.use(SweetModal)

then in your code

<sweet-modal>Well Hello There</sweet-modal>

Leave a comment