diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-18 18:40:24 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-18 18:40:31 +0900 |
| commit | e82864d4fc63334560fbb2c324f180cb6d9cd3d6 (patch) | |
| tree | 6d6b6affe9443634866219732a6eeefeb637b6e8 /src/web/app/common | |
| parent | wip (diff) | |
| download | sharkey-e82864d4fc63334560fbb2c324f180cb6d9cd3d6.tar.gz sharkey-e82864d4fc63334560fbb2c324f180cb6d9cd3d6.tar.bz2 sharkey-e82864d4fc63334560fbb2c324f180cb6d9cd3d6.zip | |
wip
Diffstat (limited to 'src/web/app/common')
| -rw-r--r-- | src/web/app/common/views/components/widgets/slideshow.vue | 2 | ||||
| -rw-r--r-- | src/web/app/common/views/components/widgets/tips.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/web/app/common/views/components/widgets/slideshow.vue b/src/web/app/common/views/components/widgets/slideshow.vue index a200aa061d..1692cbc397 100644 --- a/src/web/app/common/views/components/widgets/slideshow.vue +++ b/src/web/app/common/views/components/widgets/slideshow.vue @@ -29,7 +29,7 @@ export default define({ }; }, mounted() { - Vue.nextTick(() => { + this.$nextTick(() => { this.applySize(); }); diff --git a/src/web/app/common/views/components/widgets/tips.vue b/src/web/app/common/views/components/widgets/tips.vue index f38ecfe441..28857f5542 100644 --- a/src/web/app/common/views/components/widgets/tips.vue +++ b/src/web/app/common/views/components/widgets/tips.vue @@ -47,7 +47,7 @@ export default define({ }; }, mounted() { - Vue.nextTick(() => { + this.$nextTick(() => { this.set(); }); |