Skip to content

Instantly share code, notes, and snippets.

@simonjcarr
Last active August 10, 2020 11:28
Show Gist options
  • Select an option

  • Save simonjcarr/3b6065d71e0f14f35ba64e2cd409524c to your computer and use it in GitHub Desktop.

Select an option

Save simonjcarr/3b6065d71e0f14f35ba64e2cd409524c to your computer and use it in GitHub Desktop.
<template>
<div>{{ greeting }}</div>
</template>
<script>
export default {
data() {
return {
greeting: "Hello World"
};
}
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment