We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e870813 commit d2a1e48Copy full SHA for d2a1e48
src/views/pdf/download.vue
@@ -26,17 +26,17 @@ export default {
26
},
27
methods: {
28
fetchData() {
29
- import('./content.js').then(data => {
30
- const { title } = data.default
31
- document.title = title
32
- this.article = data.default
33
- setTimeout(() => {
34
- this.fullscreenLoading = false
35
- this.$nextTick(() => {
36
- window.print()
37
- })
38
- }, 3000)
39
+ import('./content.js').then(data => {
+ const { title } = data.default
+ document.title = title
+ this.article = data.default
+ setTimeout(() => {
+ this.fullscreenLoading = false
+ this.$nextTick(() => {
+ window.print()
+ })
+ }, 3000)
40
}
41
42
0 commit comments