Skip to content

Instantly share code, notes, and snippets.

@bachhm-dev
Created August 30, 2020 09:20
Show Gist options
  • Save bachhm-dev/8f37241ac60f5b392d1e38e01c95039f to your computer and use it in GitHub Desktop.
Save bachhm-dev/8f37241ac60f5b392d1e38e01c95039f to your computer and use it in GitHub Desktop.
<template>
<div id="app">
<div>{{formatUnix(new Date())}}</div>
</div>
</template>
<script>
import formatUnix from "./Utils/DateFormat.js";
export default {
name: "App",
components: {
},
setup() {
return {
formatUnix
};
},
};
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment