This commit is contained in:
niunai
2017-01-16 01:11:00 +08:00
parent bc8e995956
commit 03256c9f71
6 changed files with 64 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
<template>
<div>Hello {{ name }}</div>
</template>
<script>
export default {
name: 'SampleComponent',
data() {
return {
name: 'World'
};
}
};
</script>