Skip to content

Instantly share code, notes, and snippets.

@SidneyAllen
Last active November 11, 2021 03:52
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 SidneyAllen/af634d200f86fd963ba1f6a032db4e46 to your computer and use it in GitHub Desktop.
Save SidneyAllen/af634d200f86fd963ba1f6a032db4e46 to your computer and use it in GitHub Desktop.
<script>
import { ref } from "vue";
export default {
name: "App",
setup () {
const address = ref()
const city = ref()
const state = ref()
const zip = ref()
return {
address, city, state, zip
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment