vue-cli3使用cdn引入
1. index.html引入:
<script src="https://cdn.bootcss.com/moment.js/2.20.1/moment.min.js"></script><script src="https://cdn.bootcss.com/moment.js/2.20.1/locale/zh-cn.js"></script>
2. vue.config.js配置:
module.exports = {····
configureWebpack: {
externals: {
"moment": "moment",
}
}
····
};
3. .ts中使用
import moment from "moment";@Component({})
export default class Tasks extends Vue {
time = moment();
}
以上是 vue-cli3使用cdn引入 的全部内容, 来源链接: utcz.com/z/379002.html