fullcalendar_会议预约
项目中已经包含 ant-desing-vue 组件库和css预处理库scss配置
安装依赖到Vue项目中
yarn add @fullcalendar/vue
yarn add @fullcalendar/core @fullcalendar/interaction @fullcalendar/timegrid
yarn add tippy.js
大约 6 分钟
项目中已经包含 ant-desing-vue 组件库和css预处理库scss配置
yarn add @fullcalendar/vue
yarn add @fullcalendar/core @fullcalendar/interaction @fullcalendar/timegrid
yarn add tippy.js
let [a, b, c] = [1, 2, 3]
console.log(a, b, c)
/**
* @desc 判断是否是数组
* @param {Array}} arr 数组
*/
export const arrJudge = (arr) => {
if (Array.isArray(arr)) {
return true
}
}
同步请求:等待数据加载完成出现页面,先加载数据后进行页面数据展示 异步请求:局部刷新页面,边请求,边展示,利于提高用户体验