first commit from template

This commit is contained in:
2019-04-01 22:53:39 +02:00
commit 99f683066a
23 changed files with 12606 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<template>
<div>
<h3>Hello {{ name }} from my Vue.js page, built with Webpack 4!</h3>
</div>
</template>
<script>
export default {
props: {
name: {
type: String,
required: true
}
}
}
</script>