workflow(sfc-playground): fix download
This commit is contained in:
parent
9613969ffc
commit
ce5e0b67a9
@ -28,30 +28,12 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { exportFiles } from './store'
|
import { downloadProject } from './download/download'
|
||||||
import { saveAs } from 'file-saver'
|
|
||||||
|
|
||||||
function copyLink() {
|
function copyLink() {
|
||||||
navigator.clipboard.writeText(location.href)
|
navigator.clipboard.writeText(location.href)
|
||||||
alert('Sharable URL has been copied to clipboard.')
|
alert('Sharable URL has been copied to clipboard.')
|
||||||
}
|
}
|
||||||
|
|
||||||
async function downloadProject() {
|
|
||||||
const { default: JSZip } = await import('jszip')
|
|
||||||
const zip = new JSZip()
|
|
||||||
|
|
||||||
// basic structure
|
|
||||||
|
|
||||||
// project src
|
|
||||||
const src = zip.folder('src')!
|
|
||||||
const files = exportFiles()
|
|
||||||
for (const file in files) {
|
|
||||||
src.file(file, files[file])
|
|
||||||
}
|
|
||||||
|
|
||||||
const blob = await zip.generateAsync({ type: 'blob' })
|
|
||||||
saveAs(blob, 'vue-project.zip')
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user