Skip to content

Instantly share code, notes, and snippets.

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