You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
423 B
27 lines
423 B
<template> |
|
<div class="demo"> |
|
<h2 class="title">学校名称:{{ name }}</h2> |
|
<h2>学校地址:{{ address }}</h2> |
|
</div> |
|
</template> |
|
|
|
<script> |
|
|
|
export default { |
|
name: "School", |
|
data() { |
|
return { |
|
name: "修仙学院", |
|
address: "长白山", |
|
msg: "欢迎学校" // 以vc内数据为准 |
|
} |
|
}, |
|
} |
|
</script> |
|
|
|
<style lang="css" scoped> |
|
.demo { |
|
background-color: orange; |
|
} |
|
</style> |
|
|
|
|