examples: add quasar example
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<script lang="ts">
|
||||
import { defineComponent, ref } from 'vue'
|
||||
import CardComponent from 'components/CardComponent.vue'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'IndexPage',
|
||||
components: { CardComponent },
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<q-page class="row items-center justify-evenly">
|
||||
<CardComponent title="Card component" active></CardComponent>
|
||||
</q-page>
|
||||
</template>
|
||||
Reference in New Issue
Block a user