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
374 B
27 lines
374 B
<template> |
|
<div class="student"> |
|
<h2>学生名称:{{ name }}</h2> |
|
<h2>学生年龄:{{ age }}</h2> |
|
</div> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
name: "Student", |
|
data() { |
|
return { |
|
name: "小强", |
|
age: 18 |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style lang="css" scoped> |
|
.student { |
|
background-color: pink; |
|
padding: 15px; |
|
margin-top: 20px; |
|
} |
|
</style> |
|
|
|
|