Files
X-Financial/web/src/App.vue

18 lines
400 B
Vue
Raw Normal View History

<template>
<RouterView />
<ToastNotification :toast-text="toastText" />
</template>
<script setup>
import { RouterView } from 'vue-router'
import './assets/styles/global.css'
import ToastNotification from './components/shared/ToastNotification.vue'
import { useToast } from './composables/useToast.js'
const { toastText } = useToast()
</script>
<style src="./assets/styles/app.css"></style>