dayjs
如果需要使用涉及到日期的组件,你需要额外安装dayjs
插件,并挂载。
bash
npm install dayjs --save
1
挂载到cook-uni中
js
// main.js
import { createSSRApp } from 'vue';
import CookUni from '@/uni_modules/cook-uni'
import dayjs from 'dayjs';
export function createApp() {
const app = createSSRApp(App)
// cook-uni
CookUni(app,{
config:{},
// 挂载dayjs
dayjs
});
return {
app
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
挂载后你可以在其他地方使用dayjs,如:uni.$c.dayjs()
详细使用请查看文档dayjs