在學習 的時候,發現有很多使用 開發的ui組件。本著學習的目的,自己也仿照 "Element" 寫一些組件。 使用 "VuePress" 編寫組件文檔。 單元測試: +`mocha chai sinon`。 文檔預覽地址: "預覽鏈接" 使用 編輯文檔的代碼訪問: "組件文檔" 關於 使用方法: " ...
在學習vue
的時候,發現有很多使用vue
開發的ui組件。本著學習的目的,自己也仿照Element寫一些組件。
使用VuePress編寫組件文檔。
單元測試:karma
+mocha
+chai
+sinon
。
文檔預覽地址:預覽鏈接
使用VuePress
編輯文檔的代碼訪問:組件文檔
關於VuePress
使用方法:博客園、掘金
完整代碼:組件代碼
接下來就是編寫組件,首先以常用的組件Button
為例。
通過props屬性
接收父組件傳遞過來的值,並對傳遞過來的值進行類型驗證。
props:{
type:{
type: String,
validator (value) {
return [
'primary',
'success',
'info',
'warning',
'danger'
].indexOf(value)>-1;
}
},
iconName:{
type:String
},
iconSize:{
type:String,
default:'small'
},
iconPosition:{
type: String,
default: 'left',
validator(value){
return[
'left',
'right'
].indexOf(value)>-1
}
},
circle:{
type: Boolean
},
disabled:{
type: Boolean
}
}
通過 props
接收父組件傳遞的值,可以實現各種功能不一樣的button
組件。
<template>
<button @click="handleClick" class="vi-button" :disabled="disabled" :class=buttonClass>
<span class="vi-button-wrapper" :class=wrapperClass>
<span v-if="iconName" class="vi-button-icon">
<vi-icon :viIconName="iconName" :viIconSize="iconSize"></vi-icon>
</span>
<span class="vi-button-content">
<slot></slot>
</span>
</span>
</button>
</template>
<script>
export default {
name: 'ViButton',
props:{
type:{
type: String,
validator (value) {
return [
'primary',
'success',
'info',
'warning',
'danger'
].indexOf(value)>-1;
}
},
iconName:{
type:String
},
iconSize:{
type:String,
default:'small'
},
iconPosition:{
type: String,
default: 'left',
validator(value){
return[
'left',
'right'
].indexOf(value)>-1
}
},
circle:{
type: Boolean
},
disabled:{
type: Boolean
}
},
methods: {
handleClick(event) {
this.$emit('click', event);
}
},
computed:{
buttonClass(){
return {
[`vi-button-${this.type}`]:this.type,
[`vi-button-disabled`]:this.disabled,
[`vi-button-circle`]:this.circle
}
},
wrapperClass(){
return {
[`vi-button-${this.iconPosition}`]:this.iconName&&this.iconPosition
}
}
}
}
</script>
完整代碼請訪問:組件代碼