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
166 B

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