vue3不同語法格式對比的實例代碼
默認的模板方式,和vue2差不多,在組件中使用setup函數
// 父組件 <template> <div> <div> <div>{{city}}</div> <button @click="changeReactive">改變reactive</button> <button @click="handleFather">點擊父組件</button> </div> <Child ref="childRef" @handleBtn="handleBtn" @testClick="testClick" city="成都" /> </div> </template> <script> import { ref, onMounted, toRefs, reactive } from 'vue' import Child from './Child.vue' export default { components: { Child }, setup () { const handleBtn = (val) => { console.log('btn', val) } const testClick = (val) => { console.log('testClick', val) } const childRef = ref(null) const handleFather = () => { childRef.value.observed.a = 666 //父組件修改子組件的值 console.log('獲取子組件的方法', childRef.value) // 子組件需要定義expose,如果不定義,那麼需要返回,相應的函數,一般不直接返回,如果頁面上沒有用到 //直接通過expose(暴露)需要的方法或者值就行瞭 } // 通過setup函數的方法寫,需要返回,頁面上用到的方法,和值 // 如果是reactve定義的值,通過解構的方式頁面上渲染的值不是響應式的,需要通過toRefs轉換,然後解構 // ...toRefs(testReactive) const testReactive = reactive({ city: '北京', age: 22 }) const changeReactive = () => { testReactive.city = '重慶' } return { handleBtn, testClick, handleFather, ...toRefs(testReactive), changeReactive, childRef } } } </script> //子組件 <template> <div> {{observed.a}} <button @click="handleBtn">點擊</button> </div> </template> <script> import { defineProps, defineEmits, defineEmit, defineExpose, reactive } from 'vue' export default { props: { city: String }, /* 設置這個主要是為瞭,讓ctx.attrs訪問不到這個屬性 */ /* props上設置瞭有的屬性,在attrs上,也不會顯示 */ emits: ['testClick'], //設置這個的目的,是為瞭讓attrs上沒有對應的自定義方法, //子組件如果設置瞭peops,那麼在attrs上也訪問不到對應的值 //arrts在vue3中功能有所增強,掛載瞭自定義方法,和class,style //在vue2中自定義方法是掛載到,$listeners,在vue3中$liseners已被移除 setup (props, ctx) { const { expose, emit } = ctx const handleBtn = () => { console.log('btn', ctx) emit('testClick', 666) } const observed = reactive({ a: 1 }) function clickChild (value) { observed.a = value } expose({ clickChild, //暴露自定義方法,父組件調用 observed// 暴露子組件的值 }) return { observed, handleBtn } } } </script>
在script標簽上寫setup <script setup>
// 父組件 <template> <div> <button @click="handleFather">點擊父</button> <Child ref="childRef" @handleBtn="handleBtn" @testClick="testClick" city="成都" /> </div> </template> <script setup> import { ref } from 'vue' import Child from './Child.vue' // 這種方式寫不用在return導出頁面上用到的方法和值,需要用什麼直接在vue上解構出對應的defin const childRef = ref(null) const handleBtn = (val) => { console.log('btn', val) } const testClick = (val) => { console.log('testClick', val) } const handleFather = () => { console.log('獲取子組件的方法', childRef.value) childRef.value.testFatherClick() //父組件調用子組件的方法 // 子組件通過defineExpose暴露出對應的方法 } </script> // 子組件 <template> <div> <button @click="handleBtn">點擊</button> </div> </template> <script setup> import { defineProps, defineEmits, defineExpose, reactive } from 'vue' const props = defineProps({ city: String }) const emit = defineEmits(['handleBtn', 'testClick']) const handleBtn = () => { // console.log('btn', props, emit) emit('testClick', 12) } const testFatherClick = () => { console.log('測試父組件點擊子組件') } const observed = reactive({ a: 1 }) defineExpose({ //暴露方法給父組價 testFatherClick, observed }) </script> <style scoped> </style>
通過jsx方式渲染,非常接近react的方式,也是我最推薦的方式,jsx對ts也很支持,.vue文件沒有tsx支持得好
// 父組件 import { ref, reactive } from 'vue' import Child from './Child.jsx' const Father = { setup() { // 在jsx中定義的ref在頁面上使用需要通過.value去訪問 const city = ref('北京') const changeCity = () => { city.value = '杭州' } const childRef = ref(null) const handelFather = (add) => { //也是通過在組件暴露expose方法 // city.value = '杭州' console.log('childRef', childRef.value) } const testChildClick = (val) => { console.log('測試子組件點擊', val) } return () => { return ( <div> <div>{city.value}</div> <button onClick={changeCity}>改變城市</button> <button onClick={handelFather}>點擊父</button> <Child testChildClick={testChildClick} ref={childRef} /> </div> ) } } } export default Father //子組件 import { ref, reactive } from 'vue' const Child = { props: { testChildClick: Function }, setup(props, { emit, expose }) { const { testChildClick } = props const testFatherClick = () => { console.log('測試父組件點擊子組件') } const handelBtn = () => { // emit('testChildClick') //在jsx中這種方式不行 // console.log('props', props) testChildClick('返回值給父組件') // 隻能通過這種方法,這也相當於react,相當於傳遞一個函數給子組件,子組件把值,通過函數傳給父組件 } expose({ testFatherClick }) return () => { return ( <div> <button onClick={handelBtn}>子組件傳值給父組件</button> </div> ) } } } export default Child
總結
到此這篇關於vue3不同語法格式對比的文章就介紹到這瞭,更多相關vue3語法格式對比內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Vue3常用的通訊方式總結與實例代碼
- Vue3的7種種組件通信詳情
- Vue3編程流暢技巧使用setup語法糖拒絕寫return
- vue3組件通信的方式總結及實例用法
- Vue3.2單文件組件setup的語法糖與新特性總結