Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 544 Bytes

Installation.md

File metadata and controls

27 lines (22 loc) · 544 Bytes

安装指南

可以有如下多种方法安装使用 Day.js:

  • NPM:
npm install dayjs --save
import dayjs from 'dayjs'
// 或者 CommonJS
// var dayjs = require('dayjs');
dayjs().format();
  • CDN:
<!-- 最新的压缩后的 JavaScript 文件 -->
<script src="https://unpkg.com/dayjs"></script>
<script>
  dayjs().format();
</script>
  • 下载到您自己的服务器上:

https://unpkg.com/dayjs/ 下载最新的 Dayjs 源文件,并自行部署到您的服务器上。