UNPKG

523 BPlain TextView Raw
1<template>
2 <div>
3 {{text + message}}
4 <slot name="testSlot"></slot>
5 <button @click="dataToParent">测试父子组件数据传递</button>
6 </div>
7</template>
8<script>
9 export default {
10 props: ['message'],
11 computed: {
12 text: function () {
13 return '测试组件引入'
14 }
15 },
16 methods: {
17 dataToParent(){
18 this.$emit('dataToParent', '子组件传来数据:12306')
19 }
20 }
21 }
22</script>
23<style scoped>
24 div{
25 color: red;
26 }
27</style>
\No newline at end of file