UNPKG

vue3-tiptap-katex

Version:

tiptap editor using mathlive package to render katex in vue 3

12 lines (8 loc) 194 B
import { createApp } from 'vue' import App from './App.vue' const { app, router } = createApp(App); router.isReady() .then(() => { app.mount("#app"); console.log("hydrated"); });