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 | 31 |
Tags
- v-combobox
- nextjs
- vue #vue-router
- PersistentVolume
- MPA
- vue3
- 인터넷 #클라이언트 #서버 #포트 #ipadress #domainname
- localstorage
- postman
- vuetify3
- MongoDB
- sesstionstorage
- mixedcontent
- JavaScript
- javascript #컴파일 #인터프리터
- Yarn
- browserstorage
- vuejs
- vworld
- CKEditor4
- OpenLayers
- 맥 #나스 #SMA
- vuejs #pinia #vuetify3
- 라우터 #NAT #포트 #포트포워딩 #유동고정아이피 #DHCP
- PersistentVolumeClaim
- kubernetes
- basepath
- react
- javascript #localstorage #stringify #parse
- github action #tistory
Archives
- Today
- Total
月亮
[vue.js] vue3에서 filter 사용하기🤔 본문
저번에 선임님이 vue의 filter를 알아보라고 하셨는데 오늘 써볼 기회가 있어서 포스팅을 해보도록 하겠다.
일단 vue3에서 filter는 removed apis로 옮겨서 filter를 쓰기보단 computed나 method를 쓰기를 권장하고 있다!
하지만 그래도 쓰고 싶은 사람들을 위해 마이그레이션 가이드를 알려주고 있다.
https://v3-migration.vuejs.org/breaking-changes/filters.html#migration-strategy
한번 써보니까 vue3에서는 왜 filter를 없애는 건지 잘 모르겠는 느낌,,, filter 편한데,,,,
아무튼 vue3에서 filter를 쓰는 방법은 두가지로 정의하는 것 같다.
1. 지역적으로 쓸때 : computed나 method를 쓴다.
<template>
<h1>Bank Account Balance</h1>
<p>{{ accountInUSD }}</p>
</template>
<script setup>
import { computed } from 'vue'
const props = defineProps({
accountBalance: {
type: Number,
required: true
}
})
const accountInUSD = computed(() => {
return '$' + props.accountBalance
})
</script>
2. 전역적으로 쓸때 : app.config.globalProperties , $filters 사용
// main.js
import { currencyUSD } from "@/utils/filterUtils";
const app = createApp(App)
app.config.globalProperties.$filters = {
currencyUSD
}
//filterUtils.js
export const currencyUSD = (value) => {
return '$' + value
}
//ListComponent.vue
<template>
<h1>Bank Account Balance</h1>
<p>{{ $filters.currencyUSD(accountBalance) }}</p>
</template>
참고 :
https://v3-migration.vuejs.org/breaking-changes/filters.html#migration-strategy
반응형
'vue.js' 카테고리의 다른 글
[vuetify3] v-combobox 사용자 입력 비활성화 (0) | 2023.07.26 |
---|---|
[vue.js] 헷갈리는 부분 정리 (작성중...) (0) | 2023.06.20 |
[vue.js] vue3 + vuetify3 세팅 (vue-cil+webpack+vuetify3) , 디렉토리 구성 🌿 (0) | 2023.06.20 |
[vue.js+vuetify3+pinia] 전역 모달 (Alert dialog, Confirmation Modal) 만들기 🤔 (0) | 2023.04.12 |
vue-router를 이용해서 defaultLayout, 페이지 레이아웃 구성하기 (0) | 2023.04.06 |
Comments