You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
422 B
25 lines
422 B
2 years ago
|
// 过渡动画
|
||
|
import transition from '../behaviors/transition';
|
||
|
Component({
|
||
|
/**
|
||
|
* 组件的属性列表
|
||
|
*/
|
||
|
behaviors: [transition(true)],
|
||
|
externalClasses: [
|
||
|
'l-class',
|
||
|
'l-enter-class',
|
||
|
'l-enter-active-class',
|
||
|
'l-enter-to-class',
|
||
|
'l-leave-class',
|
||
|
'l-leave-active-class',
|
||
|
'l-leave-to-class'
|
||
|
],
|
||
|
|
||
|
/**
|
||
|
* 组件的方法列表
|
||
|
*/
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
});
|