vue3使用添加在vue原型上的方法
1.、在main.js中导入我们需要的依赖import moment from 'moment'2、在原型上添加事件app.config.globalProperties.$moment = moment3、在我们需要使用的组件中引入getCurrentInstanceimport { getCurrentInstance } from 'vue'4、在setup中获取proxy对象const {
·
1.、在main.js中导入我们需要的依赖
import moment from 'moment'
2、在原型上添加事件
app.config.globalProperties.$moment = moment
3、在我们需要使用的组件中引入getCurrentInstance
import { getCurrentInstance } from 'vue'
4、在setup中获取proxy对象
const { proxy } = getCurrentInstance() as any
// 可以打印看看
console.log(proxy.$mount, 'momunt')
5、然后我们就可以在我们需要使用该方法的地方使用了
proxy.$moment(时间).format('YYYY/MM/DD HH:mm:ss')
更多推荐
已为社区贡献2条内容
所有评论(0)