<script>
export default {
data(){
return {
content: '欢迎访问~~ 这是首页'
}
</script>
<template>
<main>
<h1>{{content}}</h1>
</main>
</template>