移动端UI库---Vant

一.Vant

Vant 是有赞前端团队基于有赞统一的规范实现的 Vue 组件库,提供了一整套 UI 基础组件和业务组件。通过 Vant,可以快速搭建出风格统一的页面,提升开发效率。目前已有近50个组件,这些组件被广泛使用于有赞的各个移动端业务中。若开发移动商城,使用 Vant 最为合适。

二.用法

通过 npm 安装

npm i vant -S

通过 yarn 安装

yarn add vant

三.引入组件(推荐自动按需引入组件 )

babel-plugin-import 是一款 babel 插件,它会在编译过程中将 import 的写法自动转换为按需引入的方式

安装插件

npm i babel-plugin-import -D

在.babelrc 中添加配置

// 注意:webpack 1 无需设置 libraryDirectory

{
  "plugins": [
    ["import", {
      "libraryName": "vant",
      "libraryDirectory": "es",
      "style": true
    }]
  ]
}
对于使用 babel7 的用户,可以在 babel.config.js 中配置
module.exports = {
  plugins: [
    ['import', {
      libraryName: 'vant',
      libraryDirectory: 'es',
      style: true
    }, 'vant']
  ]
};
发布了5 篇原创文章 · 获赞 3 · 访问量 830

猜你喜欢

转载自blog.csdn.net/m0_37820004/article/details/103937388