14 lines
213 B
Vue
14 lines
213 B
Vue
|
<script setup lang="ts">
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<!-- <div v-if="loading">
|
||
|
<h1>Loading...</h1>
|
||
|
</div>
|
||
|
<div v-else>
|
||
|
<h1>{{ data.title }}</h1>
|
||
|
<p>{{ data.description }}</p>
|
||
|
</div> -->
|
||
|
</template>
|