Upgrade to Vue 2.7
This commit is contained in:
parent
bd3646f4a3
commit
1ebdafa6a0
File diff suppressed because it is too large
Load Diff
|
|
@ -46,7 +46,6 @@
|
||||||
"@tiptap/vue-2": "^2.0.0-beta.77",
|
"@tiptap/vue-2": "^2.0.0-beta.77",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
"@typescript-eslint/eslint-plugin": "^5.10.0",
|
||||||
"@typescript-eslint/parser": "^5.10.0",
|
"@typescript-eslint/parser": "^5.10.0",
|
||||||
"@vue/composition-api": "^1.4.2",
|
|
||||||
"@vue/test-utils": "^1.3.0",
|
"@vue/test-utils": "^1.3.0",
|
||||||
"@vue/vue2-jest": "^27.0.0",
|
"@vue/vue2-jest": "^27.0.0",
|
||||||
"autoprefixer": "^10.4.12",
|
"autoprefixer": "^10.4.12",
|
||||||
|
|
@ -63,7 +62,7 @@
|
||||||
"eslint": "^7.32.0",
|
"eslint": "^7.32.0",
|
||||||
"eslint-formatter-friendly": "^7.0.0",
|
"eslint-formatter-friendly": "^7.0.0",
|
||||||
"eslint-plugin-cypress": "^2.12.1",
|
"eslint-plugin-cypress": "^2.12.1",
|
||||||
"eslint-plugin-vue": "^8.6.0",
|
"eslint-plugin-vue": "^9.6.0",
|
||||||
"eslint-webpack-plugin": "^3.2.0",
|
"eslint-webpack-plugin": "^3.2.0",
|
||||||
"file-loader": "^6.2.0",
|
"file-loader": "^6.2.0",
|
||||||
"graphql": "^16.3.0",
|
"graphql": "^16.3.0",
|
||||||
|
|
@ -96,14 +95,14 @@
|
||||||
"uploadcare-widget": "^3.6.0",
|
"uploadcare-widget": "^3.6.0",
|
||||||
"url-loader": "^4.1.1",
|
"url-loader": "^4.1.1",
|
||||||
"vee-validate": "^3.4.14",
|
"vee-validate": "^3.4.14",
|
||||||
"vue": "2.6.14",
|
"vue": "^2.7.13",
|
||||||
"vue-apollo": "^3.1.0",
|
"vue-apollo": "^3.1.0",
|
||||||
"vue-loader": "^15.9.8",
|
"vue-loader": "^15.10.0",
|
||||||
"vue-matomo": "^4.1.0",
|
"vue-matomo": "^4.1.0",
|
||||||
"vue-router": "^3.5.3",
|
"vue-router": "^3.5.3",
|
||||||
"vue-scrollto": "^2.11.0",
|
"vue-scrollto": "^2.11.0",
|
||||||
"vue-style-loader": "^3.0.1",
|
"vue-style-loader": "^3.0.1",
|
||||||
"vue-template-compiler": "2.6.14",
|
"vue-template-compiler": "^2.7.13",
|
||||||
"vue-vimeo-player": "^0.2.2",
|
"vue-vimeo-player": "^0.2.2",
|
||||||
"vuejs-logger": "1.5.5",
|
"vuejs-logger": "1.5.5",
|
||||||
"vuex": "^3.0.1",
|
"vuex": "^3.0.1",
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
v-if="!value.url"
|
v-if="!value.url || hadError"
|
||||||
ref="uploadcare-panel"
|
ref="uploadcare-panel"
|
||||||
/>
|
/>
|
||||||
<div v-if="value.url && !hadError">
|
<div v-if="value.url && !hadError">
|
||||||
|
|
@ -61,7 +61,6 @@
|
||||||
methods: {
|
methods: {
|
||||||
error() {
|
error() {
|
||||||
this.hadError = true;
|
this.hadError = true;
|
||||||
delete this.value.url;
|
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.mountUploadcare();
|
this.mountUploadcare();
|
||||||
|
|
|
||||||
|
|
@ -8,8 +8,9 @@
|
||||||
:to="snapshotRoute"
|
:to="snapshotRoute"
|
||||||
class="snapshot-list-item__title"
|
class="snapshot-list-item__title"
|
||||||
data-cy="snapshot-link"
|
data-cy="snapshot-link"
|
||||||
v-html="snapshot.title"
|
>
|
||||||
/>
|
{{ snapshot.title }}
|
||||||
|
</router-link>
|
||||||
<span
|
<span
|
||||||
class="snapshot-list-item__date"
|
class="snapshot-list-item__date"
|
||||||
v-html="meta"
|
v-html="meta"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue