【docs】:Code example 'setup' is missing (#7153)

* flx

* flx【docs】:Modify the official website code example, switch TS to JS, the top of the example should be '<script setup>'
feat-4.1
yang 2023-12-18 10:22:04 +08:00 committed by GitHub
parent 562623c091
commit 07c36192b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -86,7 +86,7 @@ ${vueCode?.trim()}
const scriptContent = fetchCode(vueCode, 'scriptContent'); const scriptContent = fetchCode(vueCode, 'scriptContent');
let jsCode = (await tsToJs(scriptContent))?.trim(); let jsCode = (await tsToJs(scriptContent))?.trim();
jsCode = jsCode jsCode = jsCode
? `<script> ? `<script setup>
${jsCode} ${jsCode}
</script>` </script>`
: ''; : '';