hello world with viewJS

This commit is contained in:
2021-02-19 22:33:23 +01:00
parent 3abe3d2d97
commit 9eee3c119b
8 changed files with 324 additions and 40 deletions

View File

@@ -0,0 +1,18 @@
<template>
<div class="card">
<div class="card-header">
<h4>
Hello {{ name }}
</h4>
</div>
<div class="card-body">
</div>
</div>
</template>
<script>
export default {
props: ['name']
}
console.log(app);
</script>