123456789101112131415161718192021222324 |
- module.exports = Behavior({
- data:{
- username:'hw',
- item:{a:1},
- },
- properties:{},
- methods:{},
- behaviors:[],//behaviors可以继续嵌套behavios
- // created(){
- // },
- // attached(){
- // },
- // moved(){
- // },
- // detached(){
- // },
- // ready(){
- // }
- })
|