2018-09-05 14:40:05 +08:00

19 lines
273 B
JavaScript

import transitionBehaviors from '../behaviors/transition';
Component({
options: {
addGlobalClass: true
},
externalClasses: ['custom-class'],
behaviors: [transitionBehaviors],
properties: {
name: {
type: String,
value: 'fade'
}
}
});