1
0
mirror of https://github.com/robonen/lorem-blog.git synced 2026-03-20 10:54:38 +00:00

feat(posts): add Post entity with types and UI components for content, meta, and title

This commit is contained in:
2025-06-15 15:39:15 +07:00
parent 268a6f6f42
commit ff91e96fc6
5 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
export * from './types';
export { default as PostContent } from './ui/PostContent.vue';
export { default as PostMeta } from './ui/PostMeta.vue';
export { default as PostTitle } from './ui/PostTitle.vue';