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.

14 satır
165 B

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