vue3 timestamp conversion (without using filters)

vue3 timestamp conversion (without using filters)

When vue2 converts timestamps, it generally uses filters. After vue3, vue3 removes filters and can no longer be used. The official recommendation is to use methods or calculated properties.

A Time.ts file is written below, which can convert timestamps:

class Time {
    //Format time public formatTime(time: number) {
        let date = new Date(time * 1000);
        let year = date.getFullYear();
        let month = date.getMonth() + 1;
        let day = date.getDate();
        let hour = date.getHours();
        let minute = date.getMinutes();
        let second = date.getSeconds();
        return year + "-" + month.toString().padStart(2, "0") + "-" + day.toString().padStart(2, "0")
            + " " + hour.toString().padStart(2, "0") + ":" + minute.toString().padStart(2, "0")
            + ":" + second.toString().padStart(2, "0");
    }
}
 
const time = new Time();
export default time;


To use it, just call this method in the template and pass in the corresponding timestamp.

{{ time.formatTime(timestamp) }}


Display effect:

2021-05-17 10:59:59

Currently, it can only be converted into the above format. If more formats are required, you can add a second parameter to formatTime to indicate the formatted time format, and then convert accordingly.

This is the end of this article about vue3 timestamp conversion (without using filters). For more relevant vue3 timestamp conversion content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • The problem of this being undefined when using filters in Vue
  • Solve the problem that vue filters cannot get this object
  • Detailed explanation of Vue's data and event binding and filter filters
  • Vue defines private filters and basic usage
  • Solve the problem that vue local filter cannot get this

<<:  Problem of retrieving root password in MYSQL 5.7 under Linux (tested and available)

>>:  14 practical experiences on reducing SCSS style code by 50%

Recommend

How to configure the pdflatex environment in docker

Technical Background Latex is an indispensable to...

A brief discussion on the problem of Docker run container being in created state

In a recent problem, there is such a phenomenon: ...

About if contains comma expression in JavaScript

Sometimes you will see English commas ",&quo...

CSS border half or partially visible implementation code

1. Use pseudo-classes to display half of the Bord...

HTML set as homepage and add to favorites_Powernode Java Academy

How to implement the "Set as homepage" ...

HTML markup language - reference

Click here to return to the 123WORDPRESS.COM HTML ...

Detailed steps for installing and configuring MySQL 8.0 on CentOS

Preface Here are the steps to install and configu...

js canvas realizes rounded corners picture

This article shares the specific code of js canva...

Two usages of iFrame tags in HTML

I have been working on a project recently - Budou...

Detailed explanation of how to use Node.js to implement hot reload page

Preface Not long ago, I combined browser-sync+gul...

Solution to secure-file-priv problem when exporting MySQL data

ERROR 1290 (HY000) : The MySQL server is running ...

jQuery implements navigation bar effect with expansion animation

I designed and customized a navigation bar with a...

Form submission refresh page does not jump source code design

1. Design source code Copy code The code is as fol...

Solve the problem that Docker pulls MySQL image too slowly

After half an hour of trying to pull the MySQL im...