sheetjs-vite/src/components/HelloWorld.vue
2024-06-02 20:39:56 -04:00

9 lines
147 B
Vue

<script setup lang="ts">
// @ts-ignore
import html from '../../data/pres.xlsx?html';
</script>
<template>
<div v-html="html"></div>
</template>