コンパイルエラー修正
This commit is contained in:
@@ -17,9 +17,14 @@
|
|||||||
import { reactive, ref } from 'vue';
|
import { reactive, ref } from 'vue';
|
||||||
import { get_blogs, getContent, newBlog, updateContent, deleteContent } from '../../api/blog'
|
import { get_blogs, getContent, newBlog, updateContent, deleteContent } from '../../api/blog'
|
||||||
import router from '../../router/index'
|
import router from '../../router/index'
|
||||||
|
type Blog = {
|
||||||
import { Blog, BlogType } from '../../entity/index'
|
bid: string,
|
||||||
|
btId: string,
|
||||||
|
btName: string,
|
||||||
|
title: string,
|
||||||
|
blog_prex: string,
|
||||||
|
content: string
|
||||||
|
}
|
||||||
const data_list = reactive<Blog[]>([])
|
const data_list = reactive<Blog[]>([])
|
||||||
|
|
||||||
const query = () => {
|
const query = () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user