Vue3 第三十六篇:集成xe-utils

  • Post author:
  • Post category:vue





xe-utils 函数库、工具类


xe-utils 函数库、工具类,vxe-table 表格解决方案.



https://vxetable.cn/xe-utils/#/






GitHub – x-extends/xe-utils: javascript 函数库、工具类


javascript 函数库、工具类. Contribute to x-extends/xe-utils development by creating an account on GitHub.



https://github.com/x-extends/xe-utils



安装:

npm install xe-utils --save

绑定到原型链:

import app from '../app'
import XEUtils from 'xe-utils'

app.config.globalProperties.$utils = XEUtils
app.config.globalProperties.$cookie = XEUtils.cookie

使用:

<template>
  <div>{{ $utils.toDateString(startDate, 'yyyy-dd-MM HH:mm:ss') }}</div>
  <div>{{ endDate }}</div>
</template>
const type = this.$cookie('type')
this.endDate = this.$utils.toDateString(new Date(), 'MM/dd/yyyy HH:mm:ss.SSS')
console.log(`type=${type`)



版权声明:本文为wenxingchen原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。