Skip to content
Permalink
Browse files
add HelloWorld.vue
  • Loading branch information
kajan committed Feb 13, 2021
1 parent be5865c commit 8e38512
Showing 1 changed file with 20 additions and 0 deletions.
@@ -0,0 +1,20 @@
<template>
<div>
Hello {{ name }} from Vue!
</div>
</template>

<script>
export default {
name: "HelloWorld",
data() {
return {
name: "world",
}
},
}
</script>

<style scoped>
</style>

0 comments on commit 8e38512

Please sign in to comment.