feat: toast-provider and useToast initial

This commit is contained in:
Alexandr
2022-07-26 22:26:05 +03:00
parent 4cca3e63cf
commit 63c3128b3c
17 changed files with 185 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
<template>
<toast-provider>
<div class="vp-raw flex align-center gap-2 flex-wrap flex-col">
<toast-provider-example-child />
</div>
</toast-provider>
</template>
<script setup>
import { ToastProvider } from '../../../../src/index'
import ToastProviderExampleChild from './ToastProviderExampleChild.vue'
</script>