feat: add help page & update desc
This commit is contained in:
@@ -5,7 +5,7 @@ export const install: UserModule = ({ isClient, router }) => {
|
||||
if (!isClient)
|
||||
return
|
||||
|
||||
router.isReady().then(async() => {
|
||||
router.isReady().then(async () => {
|
||||
const { registerSW } = await import('virtual:pwa-register')
|
||||
registerSW({ immediate: true })
|
||||
})
|
||||
|
||||
9
src/modules/toast.ts
Normal file
9
src/modules/toast.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import Toast from 'vue-toastification'
|
||||
import type { UserModule } from '~/types'
|
||||
|
||||
import 'vue-toastification/dist/index.css'
|
||||
|
||||
export const install: UserModule = ({ app }) => {
|
||||
// add google tag manager, and add GA4 in gtag
|
||||
app.use(Toast)
|
||||
}
|
||||
Reference in New Issue
Block a user