1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| <template>
| <view>
| <slot>
| <input style="background-color: azure;" v-model="val" @input="input">
| </slot>
| </view>
| </template>
|
| <script>
| export default {
| name:"t-test",
| props: { // 子页面定义字段 如:title
| value: {
| type: [String, Number],
| default: ''
| }
| },
| watch: {
| value(val) {
| this.val = val
| },
| },
| created() {
| this.val = this.value
| },
| data() {
| return {
| val: ""
| };
| },
| methods: {
| input() {
| this.$emit('input',this.val);
| }
| }
| }
| </script>
|
| <style>
|
| </style>
|
|