vue腳手架+TypeScrpt,實現(xiàn)vue的button組件封裝

這是項目目錄結(jié)構(gòu)

UIButton.png

本次封裝實現(xiàn)了vue組件button的封裝季眷,封裝的屬性包括:
控制大杏嘈贰:small、normal子刮、large威酒、xlarge
控制圓角:tile(直角)、rounded(半圓角)挺峡、circle(圓角)
控制靜止:disable
控制顏色樣式:color

App.vue

<template>
  <div id="app">
    <Home></Home>
  </div>
</template>

<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import Home from '@/Home.vue'
@Component({
  components: {
    Home,
  },
})
export default class App extends Vue {}
</script>

<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

home.vue

<template>
  <div class="container">
    <UiButton @click="onClick" >hello</UiButton>
  </div>

</template>
<script lang='ts'>
  import {Component, Vue} from 'vue-property-decorator'
  import UiButton from './components/UiButton/UiButton.vue'

  @Component({
    components: {
      UiButton,
    },
  })
  export default class Home extends Vue{
    private onClick(even: MouseEvent){
      window.console.log(even)
    }
  }
</script>
<style lang="stylus" rel="stylesheet/stylus" scoped>
  .container
    .btn-group
      display flex
      margin-top 20px
      .btn
        margin-right 15px
</style>

UIButton.vue

<template>
  <div>
    <button class='ui-btn' @click="btnClick"
    :class="{
      'ui-btn-small': small,
      'ui-btn-normal': normal,
      'ui-btn-large': large,
      'ui-btn-xlarge': xlarge,
      'ui-btn-tile': tile,
      'ui-btn-rounded': rounded,
      'ui-btn-circle': circle,
      'ui-btn-disable': disable
    }"
    :style="`
      --color-tint:${TintColor}
    `"
    >
      <slot>Button</slot>
    </button>
  </div>
</template>
<script lang='ts'>
  // Emit用于發(fā)布事件葵孤,Prop用于接收參數(shù)
  import {Vue, Component, Emit, Prop} from 'vue-property-decorator'

  @Component
  export default class UiButton extends Vue{
    // 會從home獲取到boolean值
    @Prop(Boolean) private small: boolean | undefined
    @Prop(Boolean) private normal: boolean | undefined
    @Prop(Boolean) private large: boolean | undefined
    @Prop(Boolean) private xlarge: boolean | undefined
    @Prop(Boolean) private tile: boolean | undefined
    @Prop(Boolean) private rounded: boolean | undefined
    @Prop(Boolean) private circle: boolean | undefined
    @Prop(Boolean) private disable: boolean | undefined
    @Prop(String) private color: string | undefined

    // vue的計算屬性
    private get TintColor(){
      if(this.color){
        return this.color
      }else{
        return '#2d8cf0'
      }
    }

    // 執(zhí)行btnClick調(diào)用emitClickEvent函數(shù),并通過emitClickEvent發(fā)送click事件并且把參數(shù)一并發(fā)送出去
    @Emit('click') private emitClickEvent(even: MouseEvent){} // 這一行等價于this.$emit('click')

    private btnClick(even: MouseEvent){
      if(!this.disable){
        this.emitClickEvent(even)
      }
    }
  }
</script>
<style lang="stylus" rel="stylesheet/stylus" scoped>
  resize(min-width, height, paddingR, fontSize)
    min-width min-width
    height height
    padding 0 paddingR
    font-size fontSize
    &.ui-btn-rounded, &.ui-btn-circle
      border-radius (@height / 2)
    &.ui-btn-circle
      min-width @height
      padding 0px 0px
  .ui-btn
    resize(64px, 36px, 16px, 0.875rem)
    border 0 solid black
    border-radius 4px
    text-align center
    outline none
    font-weight 500
    letter-spacing 0.09em
    background-color var(--color-tint)
    cursor pointer
    user-select none
    &:hover
      // 實現(xiàn)高亮
      filter brightness(120%)
    &:active
      filter brightness(80%)
    &.ui-btn-small
      resize(36px, 20px, 9px, 0.625rem)
    &.ui-btn-large
      resize(78px, 44px, 19px, 0.875rem)
    &.ui-btn-xlarge
      resize(92px, 52px, 23px, 1rem)
    &.ui-btn-tile
      border-radius 0
    &.ui-btn-disable
      cursor not-allowed
      background-color #f5f5f5
      color #c5c8ce
</style>

主要用到這個三個vue文件橱赠,引入UIButton之后尤仍,下面在Home.vue中的使用例子
<UiButton @click="onClick" xlarge circle disable color='#2dada'>hello</UiButton>
調(diào)用不同的屬性就可以了,有需要的添加的屬性也可以狭姨,在UIButton中自定義添加即可

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末宰啦,一起剝皮案震驚了整個濱河市苏遥,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌赡模,老刑警劉巖田炭,帶你破解...
    沈念sama閱讀 212,029評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異漓柑,居然都是意外死亡教硫,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,395評論 3 385
  • 文/潘曉璐 我一進店門辆布,熙熙樓的掌柜王于貴愁眉苦臉地迎上來瞬矩,“玉大人,你說我怎么就攤上這事谚殊∩パ欤” “怎么了?”我有些...
    開封第一講書人閱讀 157,570評論 0 348
  • 文/不壞的土叔 我叫張陵嫩絮,是天一觀的道長丛肢。 經(jīng)常有香客問我,道長剿干,這世上最難降的妖魔是什么蜂怎? 我笑而不...
    開封第一講書人閱讀 56,535評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮置尔,結(jié)果婚禮上杠步,老公的妹妹穿的比我還像新娘。我一直安慰自己榜轿,他們只是感情好幽歼,可當我...
    茶點故事閱讀 65,650評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著谬盐,像睡著了一般甸私。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上飞傀,一...
    開封第一講書人閱讀 49,850評論 1 290
  • 那天皇型,我揣著相機與錄音,去河邊找鬼砸烦。 笑死弃鸦,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的幢痘。 我是一名探鬼主播唬格,決...
    沈念sama閱讀 39,006評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了西轩?” 一聲冷哼從身側(cè)響起员舵,我...
    開封第一講書人閱讀 37,747評論 0 268
  • 序言:老撾萬榮一對情侶失蹤脑沿,失蹤者是張志新(化名)和其女友劉穎藕畔,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體庄拇,經(jīng)...
    沈念sama閱讀 44,207評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡注服,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,536評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了措近。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片溶弟。...
    茶點故事閱讀 38,683評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖瞭郑,靈堂內(nèi)的尸體忽然破棺而出辜御,到底是詐尸還是另有隱情,我是刑警寧澤屈张,帶...
    沈念sama閱讀 34,342評論 4 330
  • 正文 年R本政府宣布擒权,位于F島的核電站,受9級特大地震影響阁谆,放射性物質(zhì)發(fā)生泄漏碳抄。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,964評論 3 315
  • 文/蒙蒙 一场绿、第九天 我趴在偏房一處隱蔽的房頂上張望剖效。 院中可真熱鬧,春花似錦焰盗、人聲如沸璧尸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,772評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽爷光。三九已至,卻和暖如春梦湘,著一層夾襖步出監(jiān)牢的瞬間瞎颗,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,004評論 1 266
  • 我被黑心中介騙來泰國打工捌议, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留哼拔,地道東北人。 一個月前我還...
    沈念sama閱讀 46,401評論 2 360
  • 正文 我出身青樓瓣颅,卻偏偏與公主長得像倦逐,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子宫补,可洞房花燭夜當晚...
    茶點故事閱讀 43,566評論 2 349

推薦閱讀更多精彩內(nèi)容