diff --git a/playground/app.config.ts b/playground/app.config.ts index dce4c0e6..a8795b04 100644 --- a/playground/app.config.ts +++ b/playground/app.config.ts @@ -1,4 +1,9 @@ export default defineAppConfig({ + toaster: { + position: 'bottom-right' as const, + expand: true, + duration: 60000 + }, ui: { primary: 'sky', gray: 'cool' diff --git a/playground/app.vue b/playground/app.vue index 08c58dc3..e1a1590f 100644 --- a/playground/app.vue +++ b/playground/app.vue @@ -7,6 +7,8 @@ useHead({ } }) +const appConfig = useAppConfig() + const components = [ 'accordion', 'avatar', @@ -31,6 +33,7 @@ const components = [ 'switch', 'tabs', 'textarea', + 'toast', 'tooltip' ] @@ -40,7 +43,7 @@ function upperName (name: string) {