Skip to content

Instantly share code, notes, and snippets.

@snailsmall612
Created June 22, 2022 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save snailsmall612/11cef9300c33c59d4f284755e27ae5b4 to your computer and use it in GitHub Desktop.
Save snailsmall612/11cef9300c33c59d4f284755e27ae5b4 to your computer and use it in GitHub Desktop.
<template>
  ...
  <p>name: {{ name }}</p>
</template>
<script>
...
export default {
  ...
  data() {
    return {
      name: "Vic",
    };
  },
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment