Files
dtv/app/app.vue

20 lines
326 B
Vue
Raw Permalink Normal View History

2025-10-31 19:10:01 +07:00
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<script setup lang="ts">
import type {Editor} from "@tiptap/vue-3";
import {EDITOR_KEY} from "~/shared/constants";
const editor = ref<Editor | null>(null)
provide(EDITOR_KEY, editor)
</script>
<style lang="scss">
@use 'assets/styles/index';
</style>