create view for components

This commit is contained in:
khatabwedaa
2020-05-04 15:00:06 +02:00
parent 5f058b2632
commit 2eb02642ba
6 changed files with 127 additions and 2 deletions

18
src/components/Master.vue Normal file
View File

@@ -0,0 +1,18 @@
<template>
<div class="py-12">
<div class="container mx-auto px-6">
<h1 class="text-2xl text-gray-800 font-semibold mb-6">Alert</h1>
<notification-pop></notification-pop>
</div>
</div>
</template>
<script>
import NotificationPop from "./Alert/NotificationPop";
export default {
components: {
NotificationPop
}
}
</script>