2023-10-14 17:31:30 +02:00
|
|
|
import Notifications from 'vue3-vt-notifications'
|
|
|
|
|
import Meta from 'vue-meta'
|
2022-09-20 21:59:52 +02:00
|
|
|
|
2023-10-14 17:31:30 +02:00
|
|
|
function registerPlugin (app) {
|
|
|
|
|
app.use(Notifications)
|
|
|
|
|
app.use(Meta)
|
|
|
|
|
return app
|
|
|
|
|
}
|
|
|
|
|
export default registerPlugin
|