真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何在vue2.0中自定義組件

這篇文章將為大家詳細講解有關(guān)如何在vue2.0中自定義組件,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

10年積累的成都網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè)經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先網(wǎng)站制作后付款的網(wǎng)站建設(shè)流程,更有田家庵免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。

封裝組件的步驟

1. 建立組件的模板,先把架子搭起來,寫寫樣式,考慮你的組件的基本邏輯。

os:思考1小時,碼碼10分鐘,程序猿的準(zhǔn)則。

2. 準(zhǔn)備組件的好數(shù)據(jù)輸入。即分析好邏輯,定好 props 里面的數(shù)據(jù)、類型。(后面詳解)

3.準(zhǔn)備組件的好數(shù)據(jù)輸出。即根據(jù)組件邏輯,做好要暴露出來的方法。(后面詳解)

4.封裝完畢了,直接調(diào)用即可。

os: 代碼可以不看,結(jié)論在文章最后

接下來以一個很簡單的例子具體說明一下

現(xiàn)在先看一下demo的效果圖

 如何在vue2.0中自定義組件

三、 demo代碼

父組件:




 import Search from '../vuePlugin/search'
 export default {
 data() {
 return {
 searchList: ['草船借箭', '大富翁', '測試數(shù)據(jù)'],
 // 直接通過props傳遞對象 修改,挺便捷的,但是不規(guī)范
 selectValue: {
  data: '1'
 },
 // 通過emit修改,規(guī)范寫法
 selectValue2: ''
 }
 },
 mounted() {},
 methods: {
 pageGo(path) {
 this.$router.push('/' + path)
 },
 selectFunc(value) {
 this.selectValue2 = value
 console.log(this.selectValue)
 console.log(this.selectValue2)
 }
 },
 components: {
 Search
 }
 }



.f-mainPage{
 width: 100%;
 .g-banner{
 width: 100%;
 background-image: url(../../../static/main_bg.png);
 background-repeat: no-repeat;
 background-size: 100% 100%;
 position: relative;
 overflow: hidden;
 color: white;
 text-align: center;
 p:nth-child(1) {
 margin: 10px auto 0px auto;
 font-size: 1.3rem;
 }
 .f-banscri {
 margin: 15px auto 8px auto;
 font-size: 0.95rem;
 }
 .f-moneyMax{
 margin: 5px auto 0px auto;
 font-size: 2.4rem;
 }
 .f-returnCash{
 width: 120px;
 height: 35px;
 text-align: center;
 line-height: 35px;
 background-color: white;
 color: #169BD5;
 display: inline-block;
 border-radius: 5px;
 font-size: 1rem;
 margin-top: 35px;
 position: relative;
 .f-mmmbd{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  top: 0;
  left: 0;
 }
 }
 }
 .g-cashInfor{
 width: 100%;
 text-align: center;
 display: flex;
 justify-content: space-between;
 div{
 width: 50%;
 height: 60px;
 line-height: 60px;
 box-sizing: border-box;
 }
 div:nth-child(1){
 border-bottom: 1px solid #878787;
 border-right: 1px solid #878787;
 }
 div:nth-child(2){
 border-bottom: 1px solid #878787;
 }
}
 .g-operate{
 width: 100%;
 height: auto;
 overflow: hidden;
 ul{
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.05rem;
  li{
  height: 60px;
  line-height: 60px;
  padding-left: 25px;
  position: relative;
  span{
   width: 20px;
   height: 20px;
   position: absolute;
   top: 20px;
   right: 20px; 
   background-image: url(../../../static/go.png);
   background-repeat: no-repeat;
   background-size: 100% 100%;
  }
  }
 }
 .f-goodNews{
  width: 340px;
  height: 144.5px;
  margin: 20px auto 30px auto;
  text-align: center;
  background-image: url(../../../static/banner.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
 }
 }
}

子組件:



 export default {
 data() {
 return {
 data: [],
 dataHas: true,
 searchFlag: false,
 searchFous: '0',
 fousFlag: false,
 searchValue: '',
 searchBorder: 'none'
 }
 },
 props: {
 searchList: Array,
 selectValue: Object
 },
 mounted() {
 this.data = this.searchList
 },
 methods: {
 searchDown() {
 this.searchFlag === false ? this.searchFlag = true : this.searchFlag = false
 this.searchFous === '0' ? this.searchFous = 'auto' : this.searchFous = '0'
 this.searchBorder === 'none' ? this.searchBorder = '1px solid #D9D9D9' : this.searchBorder = 'none'
 this.fousFlag === false ? this.fousFlag = true : this.fousFlag = false
 },
 choseValue(value) {
 this.searchValue = value
 this.searchDown()
 this.selectValue.data = '我被修改了'
 this.$emit('selectFunc', value)
 }
 }
 }



 .f-search{
 width: 250px;
 height: auto;
 position: relative;
 margin-left: 20px;
 box-sizing: border-box;
 }
 .f-searchIn{
 width: 250px;
 height: 35px;
 line-height: 35px;
 font-size: 0.95rem;
 border-radius: 5px;
 overflow: hidden;
 position: relative;
 background-color: white;
 box-shadow: none;
 box-sizing: border-box;
 color: #000000;
 padding-left: 10px;
 border: 1px solid #A3A3A3;
 }
 .searchInFous{
 border: 1px solid #57C4F6;
 box-shadow: 0px 0px 5px #57C4F6;
 }
 .f-searchIn > span{
 display: block;
 width: 28px;
 height: 28px;
 background-image: url(../../../static/upDown.png);
 background-size: 100% 100%;
 background-repeat: no-repeat;
 background-position: 0px -13px;
 position: absolute;
 top: 10px;
 right: 5px;
 }
 .f-searchIn .searchActive{
 background-position: 0px 12px;
 top: -2px;
 }
 .f-search .f-searchXl{
 position: absolute;
 width: 100%;
 height: auto;
 max-height: 220px;
 top: 41px;
 left: -1px;
 border-radius: 5px;
 /*border: 1px solid #D9D9D9;*/
 background-color: white;
 overflow-x: hidden;
 overflow-y: scroll;
 }
 .f-search .f-searchXl > div{
 height: 35px;
 line-height: 38px;
 color: #000000;
 padding-left: 25px;
 font-size: 0.92rem;
 }
 .f-search .f-searchXl > div:hover{
 background-color: #D5F1FD;
 }

四、代碼詳解

1. 先說一下 props

我們在父組件中需要將子組件需要的數(shù)據(jù)導(dǎo)入,用法如下:

:searchList ="searchList"  就是我們的數(shù)據(jù),這個可以寫多個。這里我傳輸了2個參數(shù)過去,主要是做數(shù)據(jù)修改的說明。大家可以先忽略。

在子組件中,我們的接收和使用方法如下:

props: {
 searchList: Array,
 selectValue: Object
 },
mounted() {
 this.data = this.searchList
 },

我們在 props 中接收數(shù)據(jù),注意props對象里面 鍵值 是對改數(shù)據(jù)的 數(shù)據(jù)類型 的規(guī)定。做了規(guī)范,使用者就只能傳輸指定類型的數(shù)據(jù),否則報警告

二props對象中的數(shù)據(jù),我們可以直接在當(dāng)前組件中使用   this.searchList,可以直接使用。至于原理嘛,不懂的可以取腦補一下 js的原型 。os:這些基礎(chǔ),在這就不做詳述了

以上就是props傳遞過來的數(shù)據(jù)的使用了。

2. emit的使用(如何暴露組件方法)

我們已經(jīng)會使用 父組件向子組件傳數(shù)據(jù)了,那如子組件如何來修改父組件的數(shù)據(jù)呢?

這里提供 2 種實現(xiàn)方法,但是 第一種不推薦,強烈不推薦

方式一:

   selectValue: {
  data: '1'
 },
    。。。。。。。。。。。。。。。
 this.selectValue.data = '我被修改了'

即,父組件將 對象 數(shù)據(jù)傳遞給子組件,子組件直接修改props過來的對象的值

可以實現(xiàn),感覺是一個比較快捷的方式。但是不推薦,這種方式寫多了,容易出錯,特別是多層組件嵌套的時候。這種修改對代碼的迭代和錯誤的捕捉都不友好,所以建議大家別這樣寫。

他的實現(xiàn)原理簡單提一下: 這個對象、數(shù)組啦,是引用數(shù)據(jù)類型,說白了,就是存儲單元的信息是指針,真正數(shù)據(jù)在別的地方,通過指針查詢的數(shù)據(jù),所以這樣寫,對瀏覽器來說僅僅是傳遞了一個指針,數(shù)據(jù)還是同一份數(shù)據(jù)。所以你能修改。

方式二:

正兒八經(jīng)的通過 $emit 方法去掉父組件的方法,在父組件中修改data的數(shù)據(jù)。(根正苗紅的方法,規(guī)范寫法)

// 子組件
this.$emit('selectFunc', value)
// 父組件

selectFunc(value) {
 this.selectValue2 = value
 console.log(this.selectValue)
 console.log(this.selectValue2)
 }

關(guān)于如何在vue2.0中自定義組件就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


網(wǎng)站題目:如何在vue2.0中自定義組件
轉(zhuǎn)載來源:http://weahome.cn/article/jocjpg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部