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.
37 lines
604 B
37 lines
604 B
2 years ago
|
<template>
|
||
|
<!-- 组件的模板标签 -->
|
||
|
<div>
|
||
|
<h2>学生名称:{{ name }}</h2>
|
||
|
<h2>学生年龄:{{ age }}</h2>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<!-- 组件的交互标签 -->
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'Student',
|
||
|
data() {
|
||
|
return {
|
||
|
name: '小强',
|
||
|
age: '18'
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
|
||
|
// const school = Vue.extend({
|
||
|
// data() {
|
||
|
// return {
|
||
|
// schoolName: '尚硅谷',
|
||
|
// address: '北京'
|
||
|
// }
|
||
|
// },
|
||
|
// methods: {
|
||
|
// showName(){
|
||
|
// alert(this.schoolName)
|
||
|
// }
|
||
|
// }
|
||
|
// })
|
||
|
// 默认暴露
|
||
|
// export default school
|
||
|
</script>
|