1234567891011121314151617181920212223242526272829303132 |
- <template>
- <div class="school">
- <h2>学校名称:{{ name }}</h2>
- <h2>学校地址:{{ address }}</h2>
- <button @click="sendSchoolName">把学校名给App</button>
- </div>
- </template>
- <script>
- export default {
- name:'School',
- props:['getSchoolName'],
- data() {
- return {
- name:'尚硅谷',
- address:'北京'
- }
- },
- methods:{
- sendSchoolName(){
- this.getSchoolName(this.name)
- }
- }
- }
- </script>
- <style scoped>
- .school{
- background-color: skyblue;
- padding: 5px;
- }
- </style>
|