add: waterfall init

This commit is contained in:
pangxie1991
2017-02-22 16:21:06 +08:00
parent 3426ea0ac4
commit 846f555861
8 changed files with 71 additions and 2 deletions
+18
View File
@@ -0,0 +1,18 @@
<template>
<div>
<h2>author: {{ author }}</h2>
<div>Hello {{ name }}</div>
</div>
</template>
<script>
export default {
name: 'Sample',
props: ['author'],
data() {
return {
name: 'World'
};
}
};
</script>