We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a36edf0 commit 4254a40Copy full SHA for 4254a40
docs/src/.vuepress/components/cron-demo.vue
@@ -141,14 +141,13 @@ export default {
141
const src = computed(() => {
142
const params = {
143
locale: locale.value,
144
- format: format.value,
145
- 'initial-value': format.value == 'quartz' ? '* * * * * *' : '* * * * *',
+ format: format.value.value,
+ 'initial-value': format.value.value == 'crontab' ? '* * * * *' : '* * * * * *',
146
...(disabled.value ? { disabled:true } : {})
147
}
148
const query = new URLSearchParams(params)
149
const path = 'demo/' + flavor.value.value + '/index.html?' + query.toString()
150
-
151
- console.log("src", path)
+
152
return withBase(path)
153
})
154
0 commit comments