91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue3的setup函數如何使用

發布時間:2022-08-09 11:44:10 來源:億速云 閱讀:140 作者:iii 欄目:編程語言

本篇內容介紹了“Vue3的setup函數如何使用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

Composition Api
setup函數是一個新的組件選項。作為在組件內使用Composition API的入口點。
調用時機:
setup函數會在beforeCreate鉤子之前被調用
返回值
如果setup返回一個對象,則對象的屬性可以在組件模板中被訪問
參數
接收倆個參數

setup.vue

<template>
	<div>
		setup
	</div>
</template>
 
<script>
	export default{
		setup(){
			console.log('setup.....')
		},
		beforeCreate() {
			console.log('beforeCreate...')
		},
	}
</script>
 
<style>
</style>

app.vue

 <template>
	<comp-setup>
		
	</comp-setup>
</template>
 
<script>
/*eslint no-mixed-spaces-and-tabs: ["error", "smart-tabs"]*/
import CompSetup from './components/setupview'
export default {
  name: 'App',
  components: {
	  CompSetup,
  }
}
</script>
 
<style>
 
</style>

Vue3的setup函數如何使用

接收參數:

setup.vue

<template>
	<div>
		{{ name }}
		<p>{{ user.username }}</p>
	</div>
</template>
 
<script>
	export default{
		//setup不能訪問this
		//可以接收參數
		setup(props,context){
			// console.log('setup.....')
			//這種返回的數據不具有響應式
			// let name='tom'
			// return {
			// 	name,
			// }
			return {
				name:'tom',
				user:{
					username:'admin',
					password:'123'
				}
			}
		},
		beforeCreate() {
			// console.log('beforeCreate...')
		},
		props:{
			msg:String
		}
	}
</script>
 
<style>
</style>

app.vue

<template>
	<comp-setup msg="welcome">
		
	</comp-setup>
</template>

<script>
/*eslint no-mixed-spaces-and-tabs: ["error", "smart-tabs"]*/
import CompSetup from './components/setupview'
export default {
  name: 'App',
  components: {
	  CompSetup,
  }
}
</script>

<style>

</style>

“Vue3的setup函數如何使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

桂东县| 肥西县| 临高县| 城步| 普宁市| 柯坪县| 鹤峰县| 阿坝| 贵南县| 房产| 游戏| 康马县| 永城市| 维西| 隆安县| 明水县| 保亭| 涡阳县| 屏东县| 南华县| 嘉定区| 渭源县| 绥棱县| 揭西县| 富川| 勃利县| 定结县| 涞源县| 上杭县| 当雄县| 大兴区| 东丽区| 隆林| 金昌市| 定边县| 巴林左旗| 德化县| 伊春市| 化德县| 仪陇县| 黄石市|