mirror of
https://github.com/yeicor-3d/yet-another-cad-viewer.git
synced 2025-12-19 14:14:13 +01:00
15 lines
317 B
Vue
15 lines
317 B
Vue
<script setup lang="ts">
|
|
// License text for all dependencies, only downloaded when/if needed
|
|
// @ts-ignore
|
|
import licenseText from "../../assets/licenses.txt?raw";
|
|
</script>
|
|
|
|
<template>
|
|
<pre class="license-text" v-html="licenseText"/>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.license-text {
|
|
white-space: pre-wrap;
|
|
}
|
|
</style> |