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. 10
      plugin/md/markdownToVue.ts

10
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>`
: '';
@ -139,13 +139,13 @@ import ColorChunk from '@/components/ColorChunk';
import TokenTable from '@/components/TokenTable';
import ComponentTokenTable from '@/components/ComponentTokenTable';
export default {
export default {
components: {
ColorChunk,
TokenTable,
TokenTable,
ComponentTokenTable
},
pageData: ${JSON.stringify(pageData)}
},
pageData: ${JSON.stringify(pageData)}
}
</script>
${fetchCode(content, 'style')}

Loading…
Cancel
Save