Vue3.2中setup语法糖使用是怎样,有哪些要点
Admin 2022-08-13 群英技术资讯 470 次浏览
Vue3.0
中变量必须 return
出来,template
中才能使用;而在 Vue3.2
中只需要在 script
标签上加上 setup
属性,无需 return
,template
便可直接使用,非常的香啊!提示:以下是本篇文章正文内容,下面案例可供参考
只需在 script
标签上写上setup
代码如下(示例):
<template> </template> <script setup> </script> <style scoped lang="less"> </style>
由于 setup
不需写 return
,所以直接声明数据即可
代码如下(示例):
<script setup> import { ref, reactive, toRefs, } from 'vue' const data = reactive({ patternVisible: false, debugVisible: false, aboutExeVisible: false, }) const content = ref('content') //使用toRefs解构 const { patternVisible, debugVisible, aboutExeVisible } = toRefs(data) </script>
代码如下(示例):
<template > <button @click="onClickHelp">系统帮助</button> </template> <script setup> import {reactive} from 'vue' const data = reactive({ aboutExeVisible: false, }) // 点击帮助 const onClickHelp = () => { console.log(`系统帮助`) data.aboutExeVisible = true } </script>
代码如下(示例):
<script setup> import { ref, watchEffect, } from 'vue' let sum = ref(0) watchEffect(()=>{ const x1 = sum.value console.log('watchEffect所指定的回调执行了') }) </script>
代码如下(示例):
<script setup> import { reactive, watch, } from 'vue' //数据 let sum = ref(0) let msg = ref('你好啊') let person = reactive({ name:'张三', age:18, job:{ j1:{ salary:20 } } }) // 两种监听格式 watch([sum,msg],(newValue,oldValue)=>{ console.log('sum或msg变了',newValue,oldValue) },{immediate:true}) watch(()=>person.job,(newValue,oldValue)=>{ console.log('person的job变化了',newValue,oldValue) },{deep:true}) </script>
computed计算属性有两种写法(简写和考虑读写的完整写法)
代码如下(示例):
<script setup> import { reactive, computed, } from 'vue' //数据 let person = reactive({ firstName:'小', lastName:'叮当' }) // 计算属性简写 person.fullName = computed(()=>{ return person.firstName + '-' + person.lastName }) // 完整写法 person.fullName = computed({ get(){ return person.firstName + '-' + person.lastName }, set(value){ const nameArr = value.split('-') person.firstName = nameArr[0] person.lastName = nameArr[1] } }) </script>
子组件代码如下(示例):
<template> <span>{{props.name}}</span> </template> <script setup> import { defineProps } from 'vue' // 声明props const props = defineProps({ name: { type: String, default: '11' } }) // 或者 //const props = defineProps(['name']) </script>
父组件代码如下(示例):
<template> <child :name='name'/> </template> <script setup> import {ref} from 'vue' // 引入子组件 import child from './child.vue' let name= ref('小叮当') </script>
子组件代码如下(示例):
<template> <a-button @click="isOk"> 确定 </a-button> </template> <script setup> import { defineEmits } from 'vue'; // emit const emit = defineEmits(['aboutExeVisible']) /** * 方法 */ // 点击确定按钮 const isOk = () => { emit('aboutExeVisible'); } </script>
父组件代码如下(示例):
<template> <AdoutExe @aboutExeVisible="aboutExeHandleCancel" /> </template> <script setup> import {reactive} from 'vue' // 导入子组件 import AdoutExe from '../components/AdoutExeCom' const data = reactive({ aboutExeVisible: false, }) // content组件ref // 关于系统隐藏 const aboutExeHandleCancel = () => { data.aboutExeVisible = false } </script>
即vue2中的获取子组件的ref,直接在父组件中控制子组件方法和变量的方法
子组件代码如下(示例):
<template> <p>{{data }}</p> </template> <script setup> import { reactive, toRefs } from 'vue' /** * 数据部分 * */ const data = reactive({ modelVisible: false, historyVisible: false, reportVisible: false, }) defineExpose({ ...toRefs(data), }) </script>
父组件代码如下(示例):
<template> <button @click="onClickSetUp">点击</button> <Content ref="content" /> </template> <script setup> import {ref} from 'vue' // content组件ref const content = ref('content') // 点击设置 const onClickSetUp = ({ key }) => { content.value.modelVisible = true } </script> <style scoped lang="less"> </style>
代码如下(示例):
<script setup> import { useRoute, useRouter } from 'vue-router' // 声明 const route = useRoute() const router = useRouter() // 获取query console.log(route.query) // 获取params console.log(route.params) // 路由跳转 router.push({ path: `/index` }) </script>
代码如下(示例):
<script setup> import { useStore } from 'vuex' import { num } from '../store/index' const store = useStore(num) // 获取Vuex的state console.log(store.state.number) // 获取Vuex的getters console.log(store.state.getNumber) // 提交mutations store.commit('fnName') // 分发actions的方法 store.dispatch('fnName') </script>
setup
语法糖中可直接使用 await
,不需要写 async
, setup
会自动变成 async setup
代码如下(示例):
<script setup> import Api from '../api/Api' const data = await Api.getData() console.log(data) </script>
父组件代码如下(示例):
<template> <AdoutExe /> </template> <script setup> import { ref,provide } from 'vue' import AdoutExe from '@/components/AdoutExeCom' let name = ref('Jerry') // 使用provide provide('provideState', { name, changeName: () => { name.value = '小叮当' } }) </script>
子组件代码如下(示例):
<script setup> import { inject } from 'vue' const provideState = inject('provideState') provideState.changeName() </script>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
这篇文章主要介绍了uni-app 的生命周期,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
JavaScript中undefined和is not defined的区别与异常处理,一些朋友可能会遇到这方面的问题,对此在下文小编向大家来讲解一下,内容详细,易于理解,希望大家阅读完这篇能有收获哦,有需要的朋友就往下看吧!
全景图效果非常漂亮给人带来极好的用户体验效果,那么基于前端开发如何实现这种效果呢,下面小编给大家带来了React + Threejs + Swiper 实现全景图效果,感兴趣的朋友一起看看吧
目录vue当前页push当前页无效vue push报错TypeError: Cannot read property ‘push‘ of undefined解决方法vue当前页push当前页无效当在当前页面中push页面跳转当前页,只是push的参数不同时,只能用字符串拼接,parames和query都不会起作用。不知
这篇文章主要介绍了Vue中foreach数组与js中遍历数组的写法说明,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008