Vue.js专区

mint-ui:基于Vue.js的移动组件库

2017-11-12  本文已影响361人  疾风劲草ccy

mint-ui 是饿了么公司的前端技术团队基于 Vue.js 实现的精致移动端组件库。很赞,组件挺多,基本场景够用了,感谢开源!

vue init webpack my-project
cd my-project
npm install
npm install mint-ui -S
import Vue from 'vue'
import MintUI from 'mint-ui' // 一般直接放在这个位置
import 'mint-ui/lib/style.css' // 样式文件需要单独引用

Vue.use(MintUI)

全部引入了后就相当于全局注册了,直接用就可以了。不需要在每个.vue文件中import { … }(局部引用),以及components{ … }局部注册了。

npm install babel-plugin-component -D

然后配置下这个插件,修改 .babelrc:(添加到plugins中去)

{
  "presets": [
    ["es2015", { "modules": false }] // 需要es2015就自行安装
  ],
  "plugins": [
    ["transform-runtime"],
    ["component", [
      { "libraryName": "mint-ui", "style": true }
    ]]
  ]
}

如果你只希望引入部分组件,比如 Button 和 Cell,那么需要在 main.js 中写入以下内容:

import Vue from 'vue'
import { Button, Cell } from 'mint-ui'
import App from './App.vue'

Vue.component(Button.name, Button)
Vue.component(Cell.name, Cell)
/* 或写为
 * Vue.use(Button)
 * Vue.use(Cell)
 */

至此,一个基于 Vue 和 Mint UI 的开发环境已经搭建完毕,现在就可以编写代码了

<template>
  <div class="hello">
    <h1>{{ msg }}</h1>
    <h2>This app is desigined by mint-ui producted by elem company.</h2>
    <mt-button @click.native="handleClick()" type="primary">按钮</mt-button>
  </div>
</template>

<script>
export default {
  name: 'HelloWorld',
  data() {
    return {
      msg: 'Welcome to Your Vue.js App',
    };
  },
  methods: {
    handleClick() {
      this.$toast('Hello world!');
    },
  },
};
</script>
<style scoped>
……
</style>
npm run dev
hello.png
clicked.png
上一篇 下一篇

猜你喜欢

热点阅读