-
Notifications
You must be signed in to change notification settings - Fork 592
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial Vue3/Vuetify3 scaffold * Cleanup * Scaffold update * add user avatar to app bar * migrate home page * migrate SketchList * remove yarn.lock * remove yarn.lock * add dark mode * Remove Overview * Remove yarn lock from frontend-ng * Remove package.json * Remove changes to old sketchlist * remove reordering * Remove invalid router link --------- Co-authored-by: Johan Berggren <[email protected]>
- Loading branch information
Showing
6 changed files
with
132 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import dayjs from 'dayjs' | ||
|
||
// Add plugins | ||
import utc from 'dayjs/plugin/utc' | ||
import relativeTime from 'dayjs/plugin/relativeTime' | ||
|
||
dayjs.extend(utc) | ||
dayjs.extend(relativeTime) | ||
|
||
export default dayjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters