vue-cli3使用cdn方式引入moment.js

  1. index.html引入:


  1. vue.config.js配置:
module.exports = {

  configureWebpack: {
    externals: {
      "moment": "moment",
    }
  }

};
  1. .ts中使用
import moment from "moment";
 
@Component({})
export default class Tasks extends Vue {
    time = moment();
}

你可能感兴趣的:(vue-cli3使用cdn方式引入moment.js)