Skip to content

Instantly share code, notes, and snippets.

@bachhm-dev
Created August 30, 2020 13:55
Show Gist options
  • Save bachhm-dev/ef86e5680d539e2dc954cc2321b9c30e to your computer and use it in GitHub Desktop.
Save bachhm-dev/ef86e5680d539e2dc954cc2321b9c30e to your computer and use it in GitHub Desktop.
<template>
<div>Name: {{ name }}</div>
</template>
<script>
import { ref } from "vue";
export default {
setup() {
const name = ref('Name');
return { name };
}
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment