Skip to content

Instantly share code, notes, and snippets.

@bachhm-dev
Created August 30, 2020 14:10
Show Gist options
  • Save bachhm-dev/7d000057725e8e4189226d87e3bea6db to your computer and use it in GitHub Desktop.
Save bachhm-dev/7d000057725e8e4189226d87e3bea6db to your computer and use it in GitHub Desktop.
<template>
<div id="app">
<div>Name: {{ name }}</div>
</div>
</template>
<script>
export default {
name: "App",
data(){
return {
name: "Name"
}
}
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment