initial commit

Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
This commit is contained in:
nurRiyad
2022-12-07 00:55:08 +06:00
commit bab42538c6
11 changed files with 5128 additions and 0 deletions

11
pages/index.vue Normal file
View File

@@ -0,0 +1,11 @@
<script setup lang="ts">
let x = ref(10);
</script>
<template>
<div class="text-center">
<h1 class="text-3xl">Index page</h1>
<h4>Count = {{ x }}</h4>
<input type="button" @click="x += 1" value="increase count" />
</div>
</template>