my-behavior.js
338 Bytes
// my-behavior.js
module.exports = Behavior({
  behaviors: [],
  properties: {
    myBehaviorProperty: {
      type: String
    }
  },
  data: {
    myBehaviorData: {},
    myStr:"哈哈哈哈"
  },
  attached: function(){},
  methods: {
    myBehaviorMethod: function(){
      console.log('这是Behavior方法------------')
    }
  }
})