Home.san 232 字节
Newer Older
B
BingBlog 已提交
1 2 3 4
<template>

<article>
    <h1>
5
        {{text}}
B
BingBlog 已提交
6 7 8 9 10 11 12 13 14
    </h1>

</article>

</template>


<script>
    export default {
15 16 17 18 19
        initData() {
            return {
                text: 'welcome'
            };
        }
B
BingBlog 已提交
20 21 22
    };

</script>