mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-26 19:36:36 +08:00
19 lines
258 B
Vue
19 lines
258 B
Vue
<template>
|
|
<div>
|
|
<h2>author: {{ author }}</h2>
|
|
<div>Hello {{ name }}</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Sample',
|
|
props: ['author'],
|
|
data() {
|
|
return {
|
|
name: 'World'
|
|
};
|
|
}
|
|
};
|
|
</script>
|