mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +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 { createNamespace, addUnit } from '../utils';
|
||||||
|
import { BindEventMixin } from '../mixins/bind-event';
|
||||||
|
|
||||||
const [createComponent, bem] = createNamespace('progress');
|
const [createComponent, bem] = createNamespace('progress');
|
||||||
|
|
||||||
export default createComponent({
|
export default createComponent({
|
||||||
|
mixins: [
|
||||||
|
BindEventMixin(function (bind) {
|
||||||
|
bind(window, 'resize', this.resize, true);
|
||||||
|
bind(window, 'orientationchange', this.resize, true);
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
color: String,
|
color: String,
|
||||||
inactive: Boolean,
|
inactive: Boolean,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user