feat: wip, 도시정보

This commit is contained in:
2023-03-26 01:04:09 +09:00
parent 9e997a7ee2
commit 633defcb21
4 changed files with 77 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<template>
<div>
<div>도시 정보</div>
<div>{{cityID}}</div>
</div>
</template>
<script lang="ts">
</script>
<script lang="ts" setup>
import { toRef } from 'vue';
const props = defineProps<{
cityID?: number
}>()
const cityID = toRef(props, 'cityID');
</script>