28 lines
487 B
Vue
28 lines
487 B
Vue
<template>
|
|
<div>
|
|
<select name="" id="" v-model="selectedCity">
|
|
<option value="">선택</option>
|
|
<option value="02">서울</option>
|
|
<option value="051">부산</option>
|
|
<option value="064">제주</option>
|
|
</select>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
components: {},
|
|
data() {
|
|
return {
|
|
selectedCity: '064'
|
|
}
|
|
},
|
|
setup() {},
|
|
created() {},
|
|
mounted() {},
|
|
unmounted() {},
|
|
methods: {}
|
|
}
|
|
</script>
|
|
<style scoped></style>
|