mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(Progress): should resize when window size changed (#9757)
This commit is contained in:
parent
2a8c9cb1b5
commit
527d589ef9
@ -1,8 +1,16 @@
|
||||
import { createNamespace, addUnit } from '../utils';
|
||||
import { BindEventMixin } from '../mixins/bind-event';
|
||||
|
||||
const [createComponent, bem] = createNamespace('progress');
|
||||
|
||||
export default createComponent({
|
||||
mixins: [
|
||||
BindEventMixin(function (bind) {
|
||||
bind(window, 'resize', this.resize, true);
|
||||
bind(window, 'orientationchange', this.resize, true);
|
||||
}),
|
||||
],
|
||||
|
||||
props: {
|
||||
color: String,
|
||||
inactive: Boolean,
|
||||
|
Loading…
x
Reference in New Issue
Block a user