Added toast style and comp

This commit is contained in:
Alexis
2021-03-20 00:03:04 +01:00
parent 6784667b92
commit bbc4744eed
5 changed files with 147 additions and 1 deletions

View File

@@ -4,16 +4,19 @@
<div class="fs-content">
<router-view />
</div>
<toasts-list />
</div>
</template>
<script lang="ts">
import { defineComponent } from "vue";
import Navbar from "@/components/Navbar.vue";
import ToastsList from "@/components/toast/ToastsList.vue";
export default defineComponent({
components: {
Navbar
Navbar,
ToastsList,
}
});
</script>