Skip to content

Commit 95b8933

Browse files
author
Vue Play
committed
Stored by Vue Play
1 parent 9ff16ee commit 95b8933

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/components/Meta.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
document.head.children.author.content = this.author || this.defaults.author
2929
}
3030
},
31-
created() {
31+
mounted() {
3232
this.init()
3333
},
3434
methods: {

src/feedback/Topic.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@
349349
categories: [],
350350
moment
351351
}),
352-
created() {
352+
mounted() {
353353
this.refresh()
354354
},
355355
methods: {

src/feedback/Topics.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
this.refresh()
121121
}
122122
},
123-
created() {
123+
mounted() {
124124
this.refresh();
125125
this.getCategories();
126126
this.getStatuses()

src/views/About.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@
339339
data: () => ({
340340
count: '2500+'
341341
}),
342-
async created() {
342+
async mounted() {
343343
try {
344344
this.count = (await this.authUsers.service('users')
345345
.count({}))

src/vueplay/VueSfcViewer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@
390390
return `https://api.vueplay.io/types/sfc/${this.identifier}?ref=HEAD&type=preview${this.application?.tailwind ? "-tw" : ""}&v=${this.version}`
391391
}
392392
},
393-
async created() {
393+
async mounted() {
394394
const urlParams = new URLSearchParams(window.location.search)
395395
const id = urlParams.get("id")
396396
if (id) {

0 commit comments

Comments
 (0)