您好,登錄后才能下訂單哦!
這篇文章主要講解了“如何從面向?qū)ο笏季S理解Vue組件”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“如何從面向?qū)ο笏季S理解Vue組件”吧!
用面向?qū)ο蟮乃季S去理解Vue組件,可以將所有的事物都抽象為對象,而類或者說是組件,都具有屬性和操作。
如抽取人類為組件,其基本的屬性有姓名、年齡、國籍;基本的方法有吃飯、睡覺、跑步等。
<script> export default { name: "person", props: { name: { type: String, required: false, default: "無名氏" }, age: { type: Number, required: false, default: 0 }, country: { type: String, required: false, default: "地球人" } }, methods: { eat() { consloe.log("吃飯") }, sleep() { consloe.log("睡覺") }, run() { consloe.log("跑步") } } } </script>
在面向?qū)ο笾?,?gòu)造函數(shù)可以為類初始化全局變量,所以這種方式同樣可以用在組件中
<person :age="20" :name=""小明"" :country=""中國人""></person>
組件封裝了數(shù)據(jù)以及操作,有進(jìn)則有出,我們不用關(guān)心組件內(nèi)發(fā)生了什么,我們只需要結(jié)果和呈現(xiàn)出來的效果如何。
外界不可以直接訪問使用或訪問組件的屬性,該如何做?
使用$emit自定義事件,可以實(shí)現(xiàn)外界獲取組件屬性。
<template> ... <button @click="handleClick">點(diǎn)擊</button> </template> <script> export default { name: "person", methods: { handleClick() { this.$emit("getPerson", { age: this.age, name: this.name, country: this.country }) } } } </script>
外界調(diào)用組件時添加自定義函數(shù)@getPerson
或v-on:click="getPerson"
<template> <div> <person :age="20" :name=""小明"" :country=""中國人"" @getPerson="getPerson"></person> </div> </template> <script> export default { name: "test", methods: { getPerson(info) { consloe.log(info) } } } </script>
在網(wǎng)頁開發(fā)中,你可能會用到標(biāo)簽,而你可能會想到標(biāo)簽不可能在一個頁面使用一次,可能是多次使用到。你還可能會想到因?yàn)椴煌那闆r而自定義一些寬度、高度和顏色。
所以可以將標(biāo)簽相關(guān)的HTML代碼和CSS封裝到組件中,對外,我們暴露width、height和type參數(shù)。在使用時,因?yàn)椴煌那闆r而需要自定義,那么傳遞參數(shù)即可。
<template> <view :style="{ width: width, height: height }" :class="["owl-tag-" + type]" class="owl-tag text-xs flex align-center justify-center" > <slot></slot> </view> </template> <script> name: "owl-tag", props: { // 可傳入有效值為 primary | gray type: { type: String, default: "primary" }, width: { type: String, required: false }, height: { type: String, required: false } } </script> <style> .owl-tag { border-radius: 8rpx; padding: 6rpx 10rpx; } .owl-tag-primary { color: white; background-color: #87cefa; } .owl-tag-gray { color: #81868a; background-color: #f0f1f5; } </style>
這些工作做好了,一個組件就被我們定義好了。想用就調(diào)用,想改就傳參,這就是組件的好處。
<template> <owl-tag :type=""primary"" :height=""45rpx"" :width=""120rpx"" > 官方帖 </owl-tag> </template>
改變type的值為gray,呈現(xiàn)的效果如下:
感謝各位的閱讀,以上就是“如何從面向?qū)ο笏季S理解Vue組件”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對如何從面向?qū)ο笏季S理解Vue組件這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。