Files
tl-rtc-file/pages/index.vue
2023-02-24 12:20:56 +08:00

14 lines
246 B
Vue

<template>
<div>
<a-button @click="onClick">Home</a-button>
{{ test }}
</div>
</template>
<script setup>
const { data: test } = await useFetch('/api/test');
const onClick=async function(){
console.log(1);
}
</script>