Update list.vue

This commit is contained in:
全栈小学生 2023-07-01 16:24:02 +08:00
parent 78abbed304
commit b8194e4e6b

View File

@ -54,14 +54,9 @@
</template>
<script lang="ts" setup>
import { ref, reactive, computed } from 'vue'
import { bind } from '@/api/auth'
import { bindMobile } from '@/api/member'
import useMemberStore from '@/stores/member'
import { ref, reactive } from 'vue'
import { getArticleCategory,getArticleList } from '@/api/article'
import { FormInstance } from 'element-plus'
import { ArrowRight } from '@element-plus/icons-vue'
import type { TabsPaneContext } from 'element-plus'
import { useRouter } from 'vue-router';
const router = useRouter();
@ -79,10 +74,6 @@ const articleTableData = reactive({
}
})
const handleClick = (tab: TabsPaneContext, event: Event) => {
console.log(tab, event)
}
/**
* 获取文章列表
*/