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 { defineComponent } from 'vue'
import CustomizedComponent from 'components/CustomizedComponent.vue'
export default defineComponent({
name: 'IndexPage',
components: { CustomizedComponent },
})
</script>
<template>
<q-page class="row items-center justify-evenly">
<CustomizedComponent title="Example component" active></CustomizedComponent>
</q-page>
</template>