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.
28 lines
374 B
28 lines
374 B
2 years ago
|
<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>
|
||
|
|