This is a small wrapper around tldraw. This package is a Vue component that allows you to embed tldraw in your Vue app.
Pulling in react in a Vue app is probably cursed. But if you need to do it, this package is for you.
This package is not affiliated with tldraw. It is a community project. Also see the tldraw license.
npm install tldraw-vue
<template>
<div>
<TldrawVue :data="value" />
</div>
</template>
<script setup lang="ts">
import TldrawVue from "tldraw-vue";
</script>
<style>
@import "tldraw-vue/dist/tldraw-vue.css";
</style>