zoukankan      html  css  js  c++  java
  • mintUI 移动UI框架入门

    入门地址:

    http://mint-ui.github.io/#!/zh-cn

    下载依赖cd到项目目录下,

    下载我们用的UI框架:

    分为全局引入和按需引入

    全局引入:

    npm install mint-ui -S   下载依赖

    在man.js中引入

    import Mint from 'mint-ui'

    import 'mint-ui/lib/style.css'

    Vue.use(Mint);

    按需引入:

    import { Cell, Checklist } from 'minu-ui';

    Vue.component(Cell.name, Cell);

    Vue.component(Checklist.name, Checklist);

    引入完成。

    然后就可以按照官网的实例进行操作了,自己简单的做了一个demo

    <template>
      <div class="hello">
        <mt-header title="标题过长会隐藏后面的内容啊哈哈哈哈">
          <router-link to="/" slot="left">
            <mt-button icon="back">返回</mt-button>
          </router-link>
          <mt-button icon="more" slot="right"></mt-button>
        </mt-header>
        <div class="page-swipe">
          <mt-swipe :auto="4000">
            <mt-swipe-item :class="{slide1:true}">1</mt-swipe-item>
            <mt-swipe-item :class="{slide2:true}">2</mt-swipe-item>
            <mt-swipe-item :class="{slide3:true}">3</mt-swipe-item>
          </mt-swipe>
        </div>
    
        <mt-tabbar v-model="selected">
          <mt-tab-item id="外卖">
            <img slot="icon" src="../assets/logo.png">
            外卖
          </mt-tab-item>
          <mt-tab-item id="订单">
            <img slot="icon" src="../assets/logo.png">
            订单
          </mt-tab-item>
          <mt-tab-item id="发现">
            <img slot="icon" src="../assets/logo.png">
            发现
          </mt-tab-item>
          <mt-tab-item id="我的">
            <img slot="icon" src="../assets/logo.png">
            我的
          </mt-tab-item>
        </mt-tabbar>
      </div>
    </template>
    
    <script>
    export default {
      name: 'hello',
      data () {
        return {
          selected:2
        }
      }
    }
    </script>
    
    <!-- Add "scoped" attribute to limit CSS to this component only -->
    <style scoped>
      .page-swipe .mint-swipe {
        height: 200px;
        color: #fff;
        font-size: 30px;
        text-align: center;
        margin-bottom: 20px;
      }
      .page-swipe .mint-swipe-item {
        line-height: 200px;
      }
      .page-swipe .slide1 {
        background-color: #0089dc;
        color: #fff;
      }
      .page-swipe .slide2 {
        background-color: #ffd705;
        color: #000;
      }
      .page-swipe .slide3 {
        background-color: #ff2d4b;
        color: #fff;
      }
      .page-swipe-desc {
        text-align: center;
        color: #666;
        margin-bottom: 5px;
      }
    
    </style>
  • 相关阅读:
    关于List,Set,Map集合的遍历方法
    关于内部类的了解
    for循环打印图形的详细解析(三角形)
    SSH 免密码登录
    foreach 和 for 的区别
    有关Java集合的区别,和常用方法的总结
    hadoop完全分布式的安装
    对于Oracle analyze table的使用总结 . 对于Oracle analyze table的使用总结 .
    Oracle执行计划与统计信息的一些总结
    oracle10g 统计信息查看、收集
  • 原文地址:https://www.cnblogs.com/xiaomili/p/6759401.html
Copyright © 2011-2022 走看看