25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

13 satır
169 B

<template>
<div>{{ name }}</div>
</template>
<script setup lang="ts">
import { ref } from 'vue'
const name = ref('this is home')
</script>
<style scoped>
</style>