Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created September 18, 2020 19:24
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 cursosdesarrolloweb/8cd5ada70ec8e88394a5126d754a24d9 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/8cd5ada70ec8e88394a5126d754a24d9 to your computer and use it in GitHub Desktop.
<template>
<p>{{ message }}</p>
<p>{{ count }}</p>
</template>
<script>
import { ref } from "vue";
export default {
name: "Message",
setup() {
const message = "Hola!";
const count = ref(0);
return { message, count };
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment