vue3如何进行时间格式化
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
首先呢 我们用new Date() 所展示的时间为
推荐使用:第三方插件 dayjs
Day.js 是一个轻量的处理时间和日期的 JavaScript 库,和 Moment.js 的 API 设计保持完全一样. 如果您曾经用过 Moment.js, 那么您已经知道如何使用 Day.js
npm install dayjs --save
在xxx.vue中引入
<template>
<h1>获取当前时间</h1>
<div>{{ time }}</div>
</template>
<script setup>
import dayjs from "dayjs";
//没有使用dayjs
console.log(new Date());
//使用dayjs
console.log(dayjs(new Date()).format("YYYY-MM-DD hh:mm:ss"));
// 案例:动态获取当前时间
const time = ref();
const getTime = () => {
time.value = dayjs(new Date()).format("YYYY-MM-DD hh:mm:ss");
};
var timer = 0;
onMounted(() => {
timer = setInterval(() => {
//设置定时器
getTime(); //自定义事件
}, 10);
});
onBeforeUnmount(() => {
clearInterval(timer); //清除定时器
timer = 0;
});
</script>
GitHub 加速计划 / vu / vue
207.54 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:2 个月前 )
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 4 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 5 个月前
更多推荐
已为社区贡献2条内容
所有评论(0)