freeblox/app/pages/editor.vue

14 lines
260 B
Vue

<template>
<ClientOnly>
<LazyEditorWrapper />
</ClientOnly>
</template>
<script setup lang="ts">
import { EditorWrapper as LazyEditorWrapper } from '@freeblox/editor';
</script>
<style lang="scss">
@import '@freeblox/editor/dist/style.css';
</style>