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



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

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

 

<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>

效果以下:github

相關文章
相關標籤/搜索