项目作者: scottbedard

项目描述 :
moment.js plugin for vue-cli
高级语言: JavaScript
项目地址: git://github.com/scottbedard/vue-cli-plugin-moment.git
创建时间: 2018-09-12T05:16:50Z
项目社区:https://github.com/scottbedard/vue-cli-plugin-moment

开源协议:MIT License

下载


vue-cli-plugin-moment

NPM
MIT

This plugin configures webpack’s use of moment.js to only include a few locales. Desired locales can be set by entering a CSV of moment.js locales during installation, or by setting them manually in your vue.config.js. Below is an example configuration that includes only the English locales.

  1. module.exports = {
  2. pluginOptions: {
  3. moment: {
  4. locales: ['en']
  5. }
  6. }
  7. }

To demonstrate the payload differences to expect, here is a before and after using the above configuration.

Before After