canvas included in the main page, still shiting with vue

This commit is contained in:
2025-02-08 20:18:44 +01:00
parent edd4993f3f
commit b30e1196f4
16 changed files with 494 additions and 1 deletions

View File

@ -0,0 +1,12 @@
<!-- src/views/CanvasView.vue -->
<template>
<div>
<h1>Page Canvas</h1>
<LeanCanvas />
</div>
</template>
<script setup lang="ts">
import LeanCanvas from '@/components/canvas/Lean-canvas.vue';
</script>