feat: wip, 도시정보
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user