Browse Source

【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 11 months ago committed by GitHub
parent
commit
07c36192b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      plugin/md/markdownToVue.ts

2
plugin/md/markdownToVue.ts

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

Loading…
Cancel
Save