반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- TensorFlow
- node
- 네트워크
- localserver
- ReactNative
- VirtualBox
- qunit
- 맥
- centos
- PYTHON
- 리눅스
- react
- 개발
- avds
- MachineLearning
- Chrome
- Android
- androidstudio
- IOS
- webpack
- vsCode
- build
- xcode
- picker
- 센토스
- unittest
- jest
- MAC
- linux
Archives
- Today
- Total
로메오의 블로그
[Vue3 + typescript] reactive, ref, toRefs 반응성 주입 본문
반응형
<template>
<div>
<h1>Test Reactive</h1>
<h2>{{ username }}</h2>
<input v-model="username" type="text" />
<button @click="changeName">이름 변경</button>
<hr />
<p>제품명: {{ item }}, 가격: {{ price }}</p>
<button @click="changeProduct">제품 변경</button>
</div>
</template>
<script lang="ts">
import { defineComponent, ref, reactive, toRefs } from "vue";
export default defineComponent({
name: "TestReative",
setup() {
// ref
const username = ref("romeoh");
const changeName = () => {
username.value = "trumph";
};
// reactive
const state = reactive({
item: "TV",
price: 100,
});
const changeProduct = () => {
(state.item = "Radio"), (state.price = 200);
};
return {
username,
changeName,
...toRefs(state),
changeProduct,
};
},
});
</script>
반응형
'Frontend > Vue' 카테고리의 다른 글
[Vue3 + typescript] Quasar 설치 [quasar-cli] (0) | 2022.09.06 |
---|---|
[Vue3 + typescript] Quasar 설치 [vite-plugin] (0) | 2022.09.06 |
[Vue3 + typescript] Options, Composition, Setup 비교 (0) | 2022.09.06 |
[Vue3 + typescript] Volar 설치 (0) | 2022.09.05 |
[Vue3 + typescript] vuetify 설치 (0) | 2022.09.05 |
Comments