behavior.js 202 B

12345678
  1. export const behavior = {
  2. methods: {
  3. set(data, callback) {
  4. this.setData(data, callback);
  5. return new Promise((resolve) => this.$nextTick(resolve));
  6. }
  7. }
  8. };