Initial commit: Vue 3 + Vite text-to-mermaid converter
- Basic UI with text input and diagram display - Hybrid real-time conversion with debouncing - Zoom controls with slider - Fullscreen modal with drag and pan - Download functionality - Support for all Mermaid diagram types - Responsive design for desktop - Externalized Mermaid types configuration
parents
.gitignore
0 → 100644
.vscode/extensions.json
0 → 100644
README.md
0 → 100644
index.html
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | |||
"name": "text-to-mermaid", | |||
"private": true, | |||
"version": "0.0.0", | |||
"type": "module", | |||
"scripts": { | |||
"dev": "vite", | |||
"build": "vite build", | |||
"preview": "vite preview" | |||
}, | |||
"dependencies": { | |||
"jspdf": "^3.0.1", | |||
"mermaid": "^11.9.0", | |||
"svg2pdf.js": "^2.5.0", | |||
"vue": "^3.5.17" | |||
}, | |||
"devDependencies": { | |||
"@vitejs/plugin-vue": "^6.0.0", | |||
"vite": "^7.0.4" | |||
} | |||
} |
public/vite.svg
0 → 100644
src/App.vue
0 → 100644
src/assets/vue.svg
0 → 100644
This diff is collapsed.
src/config/mermaidTypes.js
0 → 100644
src/main.js
0 → 100644
src/style.css
0 → 100644
vite.config.js
0 → 100644
Please register or sign in to comment