examples: add quasar example

This commit is contained in:
bcakmakoglu
2022-06-03 19:32:46 +02:00
committed by Braks
parent 8dd7c79700
commit 330d6d7eac
87 changed files with 2290 additions and 166 deletions
+15
View File
@@ -0,0 +1,15 @@
<script lang="ts">
import PopupComponent from 'components/PopupComponent.vue'
import { defineComponent } from 'vue'
export default defineComponent({
name: 'IndexPage',
components: { PopupComponent },
})
</script>
<template>
<q-page class="row items-center justify-evenly">
<PopupComponent title="Popup component" active></PopupComponent>
</q-page>
</template>