first commit

This commit is contained in:
草鞋没号
2020-08-16 12:37:20 +08:00
commit f71d808d8c
10 changed files with 2118 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<template>
<h1>{{ msg }}</h1>
<button @click="count++">count is: {{ count }}</button>
<p>Edit <code>components/HelloWorld.vue</code> to test hot module replacement.</p>
</template>
<script>
export default {
name: 'HelloWorld',
props: {
msg: String
},
data() {
return {
count: 0
}
}
}
</script>