Vue移動端框架Mint UI教程-組件的使用(三)


  • 官網:https://mint-ui.github.io/#!/zh-cn
  • Github: https://github.com/ElemeFE/mint-ui/

前面兩節說到,從搭建環境,引入Mint框架,到實現一個頁面導航跳轉;
Vue移動端框架Mint UI教程-搭建環境引入框架(一):https://www.jianshu.com/p/874e5152b3c5
Vue移動端框架Mint UI教程-底部導航欄(二):https://www.jianshu.com/p/56e887cbb660前端

而後就是開始寫每一個頁面的代碼,Mint UI存在必有道理
基於vue2.0mint-ui組件的使用vue


 
5640239-a4b08d3733184bd1.png
 
 
5640239-893430196c1bdff2.png
 
<template>
  <div>
    <gheader :examplename="examplename"></gheader>
    <ul>
      <li><mt-button size="large" @click="ToastA">默認Toast</mt-button></li>
      <li><mt-button size="large" @click="ToastB">帶Icon標誌的Toast</mt-button></li>
      <li><mt-button size="large" @click="ToastC">自定義位置Toast</mt-button></li>
    </ul> 
    <gfooter></gfooter> 
  </div>
</template>
<script>
import { Toast } from 'mint-ui';
export default {
  name: 'Toast',
  data(){
    return {
      examplename: "Toast"
    }
  },
  mounted(){

  },
  methods:{
    ToastA(){
      Toast('默認Toast');
    },
    ToastB(){
      Toast({
        message: '操做成功',
        iconClass: 'fa fa-check fa-2x'
      });
    },
    ToastC(){
      Toast({
        message: '自定義位置',
        position: 'bottom',
        duration: 5000
      });
    }
  }
}
</script>
<style scoped>
  ul {
    padding-left: 10px;
    padding-top: 20px;
    padding-right: 10px;
  }
  li {
    margin: 20px 0;
   list-style: none;
  }
</style>

效果以下:git

 
5640239-3fe93ff5d33fb0e6.png
 

原文做者:祈澈姑娘
90後前端妹子,愛編程,愛運營,文藝與代碼齊飛,魅力與智慧共存的程序媛一枚。
堅持總結工做中遇到的技術問題,堅持記錄工做中所所思所見,對於博客上面有不會的問題,能夠加入qq技術交流羣聊:649040560。github

相關文章
相關標籤/搜索