add toast-notification

This commit is contained in:
jxxghp
2023-07-03 17:00:38 +08:00
parent 569f88617a
commit 3240e259ed
4 changed files with 14 additions and 1 deletions

View File

@@ -10,6 +10,8 @@ import '@core/scss/template/index.scss'
import '@layouts/styles/index.scss'
import '@styles/styles.scss'
import { createApp } from 'vue'
import ToastPlugin from 'vue-toast-notification'
import 'vue-toast-notification/dist/theme-default.css'
loadFonts()
// Nprogress
@@ -23,6 +25,7 @@ app
.use(vuetify)
.use(router)
.use(store)
.use(ToastPlugin)
.mount('#app')