zanui vue config

This commit is contained in:
cookfront
2017-03-03 10:20:55 +08:00
parent 0e8b918f3e
commit 6e6c057ffd
11 changed files with 82 additions and 5 deletions

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>