mirror of
https://github.com/bakateam/merakiui.git
synced 2025-12-10 07:25:34 +00:00
create view for components
This commit is contained in:
18
src/components/Master.vue
Normal file
18
src/components/Master.vue
Normal 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>
|
||||
Reference in New Issue
Block a user