Escape backslashes in javascript string (#2861)
This commit is contained in:
parent
e34f446210
commit
aadd6eec19
1 changed files with 1 additions and 1 deletions
|
|
@ -9,7 +9,7 @@ const props = defineProps([
|
|||
])
|
||||
|
||||
const config = ref(props.config)
|
||||
const outputNamePlaceholder = (props.platform === 'windows') ? '\\.\DISPLAY1' : '0'
|
||||
const outputNamePlaceholder = (props.platform === 'windows') ? '\\\\.\\DISPLAY1' : '0'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue