Skip to content

Instantly share code, notes, and snippets.

@jasonbahl
Last active March 17, 2021 00:33
Show Gist options
  • Save jasonbahl/1e6afbcb2dbb7d4abb9600d0ba1027c2 to your computer and use it in GitHub Desktop.
Save jasonbahl/1e6afbcb2dbb7d4abb9600d0ba1027c2 to your computer and use it in GitHub Desktop.
<script>
export default {
methods: {
getDate(date) {
const newDate = new Date(date);
const newDateString = `${newDate.toLocaleString("default", {
month: "long",
})}, ${newDate.getDate()} ${newDate.getFullYear()}`;
return newDateString;
},
},
mounted() {
console.log(this.$static);
},
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment