Skip to content

Commit

Permalink
fix: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
bangbang93 committed Oct 27, 2023
1 parent 37831d1 commit f386dde
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions packages/admin/src/pages/attachment/list.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ import FreyjaAttachmentCard from '../../components/attachment-card.vue'
interface IAttachment {
_id: string
path: string
filename: string
createdAt: string
}
export default defineComponent({
Expand Down
1 change: 1 addition & 0 deletions packages/home/src/components/home/menu-category.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ import {useHomeStore} from '../../store/home.ts'
const homeStore = useHomeStore()
await homeStore.getCategories()
function onMouseEnter(): void {}
</script>
4 changes: 2 additions & 2 deletions packages/home/src/pages/home/HomeArticle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ import {inject, onMounted, ref} from 'vue'
import {useRoute} from 'vue-router'
import FreyjaArticleComment from '../../components/home/article-comment.vue'
import {useArticleStore} from '../../store/article.ts'
import {useCommentStore} from '../../store/comment.ts'
import {IComment, useCommentStore} from '../../store/comment.ts'
const articleStore = useArticleStore()
const commentStore = useCommentStore()
const route = useRoute()
const articleId = route.params.id as string
const comments = ref([])
const comments = ref<IComment[]>([])
onMounted(async () => {
prismjs.highlightAll()
Expand Down

0 comments on commit f386dde

Please sign in to comment.