溫馨提示×

溫馨提示×

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

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

Vue中單文件組件開發(fā)示例

發(fā)布時間:2021-01-27 14:09:14 來源:億速云 閱讀:260 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了Vue中單文件組件開發(fā)示例,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

正文

Vue 單文件組件開發(fā)

當(dāng)使用vue-cli初始化一個項(xiàng)目的時候,會發(fā)現(xiàn)src/components文件夾下有一個HelloWorld.vue文件,這便是單文件組件的基本開發(fā)模式。

// 注冊
Vue.component('my-component', {
 template: '<p>A custom component!</p>'
})
// 創(chuàng)建根實(shí)例
new Vue({
 el: '#example'
})

接下來,開始寫一個dialog組件。

Dialog

目標(biāo)對話框組件的基本樣式如圖:

Vue中單文件組件開發(fā)示例

根據(jù)目標(biāo)樣式,可以總結(jié)出:

  1. dialog組件需要一個titleprops來標(biāo)示彈窗標(biāo)題

  2. dialog組件需要在按下確定按鈕時發(fā)射出確定事件(即告訴父組件確定了)

  3. 同理,dialog組件需要發(fā)射出取消事件

  4. dialog組件需要提供一個插槽,便于自定義內(nèi)容

那么,編碼如下:

<template>
 <p class="ta-dialogwrapper">
 <p class="ta-dialog">
  <p class="ta-dialogheader">
  <span>{{ title }}</span>
  <i class="ios-close-empty" @click="handleCancel()"></i>
  </p>
  <p class="ta-dialogbody">
  <slot></slot>
  </p>
  <p class="ta-dialogfooter">
  <button @click="handleCancel()">取消</button>
  <button @click="handleOk()">確定</button>
  </p>
 </p>
 </p>
</template>
<script>
export default {
 name: 'Dialog',
 props: {
 title: {
  type: String,
  default: '標(biāo)題'
 },
 },
 methods: {
 handleCancel() {
  this.$emit('cancel')
 },
 handleOk() {
  this.$emit('ok')
 },
 },
}
</script>

這樣便完成了dialog組件的開發(fā),使用方法如下:

<ta-dialog 
 title="彈窗標(biāo)題" 
 @ok="handleOk" 
 @cancel="handleCancel">
 <p>我是內(nèi)容</p>
</ta-dialog>

這時候發(fā)現(xiàn)一個問題,通過使用v-if或者v-show來控制彈窗的展現(xiàn)時,沒有動畫?。?!,看上去很生硬。教練,我想加動畫,這時候就該transition組件上場了。使用transition組件結(jié)合css能做出很多效果不錯的動畫。接下來增強(qiáng)dialog組件動畫,代碼如下:

<template>
 <transition name="slide-down">
 <p class="ta-dialogwrapper" v-if="isShow">
  // 省略
 </p>
 </transition>
</template>
<script>
export default {
 data() {
 return {
  isShow: true
 }
 },
 methods: {
 handleCancel() {
  this.isShow = false
  this.$emit('cancel')
 },
 handleOk() {
  this.isShow = true
  this.$emit('ok')
 },
 },
}
</script>

可以看到transition組件接收了一個nameprops,那么怎么編寫css完成動畫呢?很簡單的方式,寫出兩個
關(guān)鍵class(css 的 className)樣式即可:

.slide-down-enter-active {
 animation: dialog-enter ease .3s;
}
.slide-down-leave-active {
 animation: dialog-leave ease .5s;
}
@keyframes dialog-enter {
 from {
 opacity: 0;
 transform: translateY(-20px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
}
@keyframes dialog-leave {
 from {
 opacity: 1;
 transform: translateY(0);
 }
 to {
 opacity: 0;
 transform: translateY(-20px);
 }
}

就是這么簡單就開發(fā)出了效果還不錯的動效,注意transition組件的name為slide-down,而編寫的動畫的關(guān)鍵className為slide-down-enter-active和slide-down-leave-active。

封裝Dialog做MessageBox

Element的MessageBox的使用方法如下:

this.$confirm('此操作將永久刪除該文件, 是否繼續(xù)?', '提示', {
 confirmButtonText: '確定',
 cancelButtonText: '取消',
 type: 'warning'
}).then(() => {
 this.$message({
 type: 'success',
 message: '刪除成功!'
 });
}).catch(() => {
 this.$message({
 type: 'info',
 message: '已取消刪除'
 });   
});

看到這段代碼,我的感覺就是好神奇好神奇好神奇(驚嘆三連)。仔細(xì)看看,這個組件其實(shí)就是一個封裝好的dialog,

Vue中單文件組件開發(fā)示例

接下來,我也要封裝一個這樣的組件。首先,整理下思路:

  1. Element的使用方法是this.$confirm,這不就是掛到Vue的prototype上就行了

  2. Element的then是確定,catch是取消,promise就可以啦

整理好思路,我就開始編碼了:

import Vue from 'vue'
import MessgaeBox from './src/index'
const Ctur = Vue.extend(MessgaeBox)
let instance = null
const callback = action => {
 if (action === 'confirm') {
 if (instance.showInput) {
  instance.resolve({ value: instance.inputValue, action })
 } else {
  instance.resolve(action)
 }
 } else {
 instance.reject(action)
 }
 instance = null
}
const showMessageBox = (tip, title, opts) => new Promise((resolve, reject) => {
 const propsData = { tip, title, ...opts }
 instance = new Ctur({ propsData }).$mount()
 instance.reject = reject
 instance.resolve = resolve
 instance.callback = callback
 document.body.appendChild(instance.$el)
})
const confirm = (tip, title, opts) => showMessageBox(tip, title, opts)
Vue.prototype.$confirm = confirm

至此,可能會疑惑怎么callback呢,其實(shí)我編寫了一個封裝好的dialog并將其命名為MessageBox,
它的代碼中,有這樣兩個方法:

onCancel() {
 this.visible = false
 this.callback && (this.callback.call(this, 'cancel'))
},
onConfirm() {
 this.visible = false
 this.callback && (this.callback.call(this, 'confirm'))
},

沒錯,就是確定和取消時進(jìn)行callback。我還想說一說Vue.extend,代碼中引入了MessageBox,

我不是直接new MessageBox而是借助new Ctur,因?yàn)檫@樣可以定義數(shù)據(jù)(不僅僅是props),例如:

instance = new Ctur({ propsData }).$mount()

這時候,頁面上其實(shí)是還沒有MessageBox的,我們需要執(zhí)行:

document.body.appendChild(instance.$el)

如果你直接這樣,你可能會發(fā)現(xiàn)MessageBox打開的時候沒有動畫,而關(guān)閉的時候有動畫。解決方法也很簡單,
appendChild的時候讓其仍是不可見,然后使用類這樣的代碼:

Vue.nextTick(() => instance.visible = true)

這樣就有動畫了。

總結(jié)

  1. 通過transition和css實(shí)現(xiàn)不錯的動畫。其中,transition組件的name決定了編寫css的兩個關(guān)鍵類名為[name]-enter-active和[name]-leave-active

  2. 通過Vue.extend繼承一個組件的構(gòu)造函數(shù)(不知道怎么說合適,就先這樣說),然后通過這個構(gòu)造函數(shù),便可以實(shí)現(xiàn)組件相關(guān)屬性的自定義(使用場景:js調(diào)用組件)

  3. js調(diào)用組件時,為了維持組件的動畫效果可以先document.body.appendChild 然后Vue.nextTick(() => instance.visible = true)

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Vue中單文件組件開發(fā)示例”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI