7 lines
208 B
JavaScript
7 lines
208 B
JavaScript
|
import bootstrap from 'bootstrap/dist/js/bootstrap.bundle.js'
|
||
|
import "bootstrap-icons/font/bootstrap-icons.css";
|
||
|
|
||
|
export default defineNuxtPlugin((nuxtApp) => {
|
||
|
nuxtApp.provide('bootstrap', bootstrap)
|
||
|
})
|