mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2026-03-03 09:36:35 +00:00
Add various performance improvements
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<script>
|
||||
import axios from "axios";
|
||||
import moment from "moment";
|
||||
import dayjs from "dayjs";
|
||||
import Loading from "vue-loading-overlay";
|
||||
import { install } from "@github/hotkey";
|
||||
|
||||
@@ -55,7 +55,7 @@ export default {
|
||||
computed: {
|
||||
formatDate() {
|
||||
return (v) => {
|
||||
return moment(String(v)).format("hh:mm A z (MM/DD)");
|
||||
return dayjs(String(v)).format("hh:mm A z (MM/DD)");
|
||||
};
|
||||
},
|
||||
filteredTopics() {
|
||||
|
||||
Reference in New Issue
Block a user