zmc
2023-08-14 172d73cbe737c04b3d2c3fe8908db2460c241543
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<script>
export default{
    props: {
        value :String,
        title: String
    },
    emits:['enlarge-text']
 
}
 
 
</script>
 
<template>
<div>
    hello : {{ value }}
    文章:   {{ title }}
    <button @click="$emit('enlarge-text')">点击增大字体 </button>
    <slot/>
</div>
 
</template>