Skip to content

Commit 8e38512

Browse files
author
kajan
committed
add HelloWorld.vue
1 parent be5865c commit 8e38512

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<template>
2+
<div>
3+
Hello {{ name }} from Vue!
4+
</div>
5+
</template>
6+
7+
<script>
8+
export default {
9+
name: "HelloWorld",
10+
data() {
11+
return {
12+
name: "world",
13+
}
14+
},
15+
}
16+
</script>
17+
18+
<style scoped>
19+
20+
</style>

0 commit comments

Comments
 (0)