一:概述

1.中文文档

  https://mint-ui.github.io/#!/en

2.安装包

  

二:mt-button的使用

  主要是介绍css-component

1.程序

  在App.vue下面写

  1. <template>
  2. <div>
  3. <h1>这是 App 组件</h1>
  4.  
  5. <router-link to="/account">Account list</router-link>
  6. <router-link to="/goodlist">Goodslist list</router-link>
  7. <router-view></router-view>
  8.  
  9. <br>
  10.  
  11. <mt-button type="primary">primary</mt-button>
  12. <mt-button type="default">default</mt-button>
  13. <mt-button type="danger">danger</mt-button>
  14.  
  15. <br>
  16.  
  17. <mt-button size="small" type="primary">small</mt-button>
  18. <mt-button size="large" type="danger">large</mt-button>
  19. <mt-button size="normal" type="primary">normal</mt-button>
  20.  
  21. <br>
  22.  
  23. <mt-button disabled>disabled</mt-button>
  24.  
  25. <br>
  26.  
  27. <mt-button plain>plain</mt-button>
  28.  
  29. <br>
  30.  
  31. <mt-button icon="back">back</mt-button>
  32. <mt-button icon="more">更多</mt-button>
  33.  
  34. </div>
  35. </template>
  36.  
  37. <script>
  38. </script>
  39.  
  40. <style>
  41.  
  42. </style>

  

2.效果

  

三:toast的使用

  主要是介绍js component

1.需求说明一下

  刷新进页面弹出提示框,然后等页面数据刷新结束之后,就自动关闭弹框

  包括弹框图标,以及变色

2.新建一个app.css

  用于图标变色

  1. .mytoast i{
  2. color: aqua !important;
  3. }

  

3.使用bootstrap的图标

  所以,需要引用包。同时,将新建的css引入

  修改main.js如下:

  1. // js的主要入口
  2. console.log("ok")
  3.  
  4. import Vue from 'vue'
  5.  
  6. //引用vue-router,然后和vue产生关系
  7. import VueRouter from 'vue-router'
  8. Vue.use(VueRouter)
  9.  
  10. //MintUI
  11. import MintUI from 'mint-ui'
  12. import 'mint-ui/lib/style.css'
  13. Vue.use(MintUI)
  14.  
  15. //bootstrap的样式
  16. import 'bootstrap/dist/css/bootstrap.css'
  17.  
  18. import './css/app.css'
  19.  
  20. import app from './App.vue'
  21. import router from './router.js'
  22. var vm = new Vue({
  23. el:'#app',
  24. render:c=>c(app),
  25. router
  26. })

  

4.App.vue代码如下

  1. <template>
  2. <div>
  3. <h1>这是 App 组件</h1>
  4.  
  5. <router-link to="/account">Account list</router-link>
  6. <router-link to="/goodlist">Goodslist list</router-link>
  7. <router-view></router-view>
  8.  
  9. <br>
  10.  
  11. <mt-button type="primary" @click="show">primary</mt-button>
  12. <mt-button type="default">default</mt-button>
  13. <mt-button type="danger">danger</mt-button>
  14.  
  15. <br>
  16.  
  17. <mt-button size="small" type="primary">small</mt-button>
  18. <mt-button size="large" type="danger">large</mt-button>
  19. <mt-button size="normal" type="primary">normal</mt-button>
  20.  
  21. <br>
  22.  
  23. <mt-button disabled>disabled</mt-button>
  24.  
  25. <br>
  26.  
  27. <mt-button plain>plain</mt-button>
  28.  
  29. <br>
  30.  
  31. <mt-button icon="back">back</mt-button>
  32. <mt-button icon="more">更多</mt-button>
  33.  
  34. </div>
  35. </template>
  36.  
  37. <script>
  38. import {Toast} from 'mint-ui';
  39. export default {
  40. data(){
  41. return {
  42. toastTnstance:null
  43. };
  44. },
  45. created(){
  46. this.getList();
  47. },
  48. methods:{
  49. //模拟获取样表的方法
  50. getList(){
  51. this.show();
  52. setTimeout(() => {
  53. this.toastTnstance.close();
  54. }, 2000);
  55. },
  56. show(){
  57. this.toastTnstance=Toast({
  58. message: 'Upload Complete',
  59. position: 'bottom',
  60. duration: -1,
  61. iconClass: 'glyphicon glyphicon-king', //图标
  62. className:'mytoast' //自定义toast样式
  63. });
  64. }
  65.  
  66. }
  67. }
  68. </script>
  69.  
  70. <style>
  71.  
  72. </style>

  

5.效果

  

四:按需导入

1.导包

  

2.在.babelrc中修改

  

3.引入需要的组件

  main.js

  1. // js的主要入口
  2. console.log("ok")
  3.  
  4. import Vue from 'vue'
  5.  
  6. //引用vue-router,然后和vue产生关系
  7. import VueRouter from 'vue-router'
  8. Vue.use(VueRouter)
  9.  
  10. //MintUI,这种是全部导入
  11. // import MintUI from 'mint-ui'
  12. // import 'mint-ui/lib/style.css'
  13. // Vue.use(MintUI)
  14.  
  15. //按需导入
  16. import {Button} from 'mint-ui'
  17. Vue.component(Button.name,Button)
  18.  
  19. //bootstrap的样式
  20. import 'bootstrap/dist/css/bootstrap.css'
  21.  
  22. import './css/app.css'
  23.  
  24. import app from './App.vue'
  25. import router from './router.js'
  26. var vm = new Vue({
  27. el:'#app',
  28. render:c=>c(app),
  29. router
  30. })

  

013 mint-ui的更多相关文章

  1. vue mint UI

    vue 与mint  UI 结合开发手机app  html5页面 api  文档   http://mint-ui.github.io/#!/zh-cn

  2. 基于VUE.JS的移动端框架Mint UI

    Mint UI GitHub:github.com/ElemeFE/mint 项目主页:mint-ui.github.io/# Demo:elemefe.github.io/mint- 文档:mint ...

  3. vue mint ui 手册文档对于墙的恐惧

    http://www.cnblogs.com/smallteeth/p/6901610.html npm 安装 推荐使用 npm 的方式安装,它能更好地和 webpack 打包工具配合使用. npm ...

  4. Mint UI文档

    Mint UI文档:http://elemefe.github.io/mint-ui/#/ 一.Mint UI的安装和基本用法. 1.NPM :npm i mint-ui -S 建议使用npm进行安装 ...

  5. 新建一个基于vue.js+Mint UI的项目

    上篇文章里面讲到如何新建一个基于vue,js的项目(详细文章请戳用Vue创建一个新的项目). 该项目如果需要组件等都需要自己去写,今天就学习一下如何新建一个基于vue.js+Mint UI的项目,直接 ...

  6. iView webapp / Mint UI / MUI [前端UI]

    前端UI iView webapp一套高质量的 微信小程序 UI 组件库 https://weapp.iviewui.com/?from=iview Mint UI 基于 Vue.js 的移动端组件库 ...

  7. Mint UI 使用指南

    上来直接在webpack里将Mint UI引入项目,发现各种问题.饿了么组件库文档太坑了,好多地方写错,有些该说明的地方没说,比如例子里单文件.vue组件里用的类post-css处理器,我一直使用SA ...

  8. Mint UI Example的运行

    Mint -UI是新推出的移动端UI框架 官网 不过官网上的文档例子不是很全面. 建议下载他们提供的example来学习. 1.examplle源码下载地址 2.打开项目,我这里使用webstorm, ...

  9. vuetify,vux,Mint UI 等框架的选择

    vuetify: https://vuetifyjs.com/zh-Hans/getting-started/quick-start NutUI:https://github.com/jdf2e/nu ...

  10. Vue移动组件库Mint UI的安装与使用

    一.什么是 Mint UI 1.Mint UI 包含丰富的 CSS 和 JS 组件,可以提升移动端开发效率 2.Mint UI 按需加载组件 3.Mint UI 轻量化 二.Mint UI 的安装 1 ...

随机推荐

  1. Nginx作为代理服务

    代理服务简介 什么是代理服务 代理-代理办理(代理理财.代理收货.代理购物等等). HTTP请求没有代理服务的模型图 HTTP请求具有代理服务的模型图 代理分类 正向代理 反向代理 正向代理 当局域网 ...

  2. 将浏览器地址栏中的 Request 参数显示成中文

    希望实现:在当 JSP 页面发起请求,或者 Servlet 跳转时,地址栏中的参数可以显示成中文. 在通常情况下,浏览器地址栏中的URL地址为了适配不同的浏览器,会将URL地址信息转码为"I ...

  3. python生成图片二维码(利用pillow)

    首先 pip install pillow 然后 from PIL import Image from PIL import ImageDraw from PIL import ImageFont i ...

  4. Prometheus学习笔记(7)PromQL玩法入门

    目录 1.什么是PromQL??? 2.如何查询??? 1.什么是PromQL??? PromQL是Prometheus内置的数据查询语言,其提供对时间序列数据丰富的查询,聚合以及逻辑运算能力的支持. ...

  5. Emmagee的基本使用

    Emmagee的基本使用 注意:目前最新版本为2.5.1:由于谷歌限制仅支持安卓7.0以下版本: 一.Emmagee介绍 Emmagee是一个简单易上手的Android性能监测工具,主要用于监测单个A ...

  6. 【Idea】idea中spring框架配置文件,无法自动提示spring配置

  7. Redis的入门

    什么是NOSQL? NOSQL(Not Only SQL)不仅仅是数据库,是一种全新的理念,泛指非关系型的数据库. 为什么需要NOSQL? 随着互联网的高速崛起,网站的用户群的增加,访问量的上升,传统 ...

  8. 201671030104 邓海祥 实验十四 团队项目评审&课程项目总结

    项目 内容 课程名称 2016级计算机科学与工程学院软件工程(西北师范大学) 这个作业的要求在哪里 实验十四 团队项目评审&课程学习总结 课程学习目标 (1)掌握软件项目评审会流程:(2)反思 ...

  9. fastjson =< 1.2.47 反序列化漏洞复现

    fastjson =< 1.2.47 反序列化漏洞复现 HW期间爆出来一个在hw期间使用的fastjson 漏洞,该漏洞无需开启autoType即可利用成功,建议使用fastjson的用户尽快升 ...

  10. 项目Beta冲刺(团队5/7)

    项目Beta冲刺(团队) --5/7 作业要求: 项目Beta冲刺(团队) 1.团队信息 团队名 :男上加男 成员信息 : 队员学号 队员姓名 个人博客地址 备注 221600427 Alicesft ...