Vue3中提取公用的方法
2.在页面中进行引用。
·
1.创建common.js,将可复用的方法放在该文件下:
import {nextTick, onMounted, onUnmounted, ref} from "vue";
export function tableList(getListFn) {
const tableDataList = ref([]);
const currentPage = ref();
const totalCount = ref();
const pageSize = ref();
const inputVal = ref();
const tableHeight = ref();
const mainSectionContainer = ref(null);
const tableContainer = ref(null);
const getTableList = async (page, size, email) => {}
const setTableHeight = async () => {}
const searchEmail = () => {}
const handleSizeChange = (val) => {}
const handleCurrentChange = (val) => {}
let timer = 0;
const onResize = () => {}
onMounted(() => {});
onUnmounted(() => {})
//最后将定义的方法及参数return出去
return {
tableDataList,
currentPage,
totalCount,
pageSize,
inputVal,
tableHeight,
mainSectionContainer,
tableContainer,
searchEmail,
handleSizeChange,
handleCurrentChange,
}
}
2.在页面中进行引用
<script setup>
//引入js文件中的方法
import {tableList} from "@/assets/js/common";
import {getBackendImageList} from "@/api";
//将需要使用的方法以及参数进行调用
const {
tableDataList: backendImageList,
currentPage,
totalCount,
pageSize,
inputVal,
tableHeight,
mainSectionContainer,
tableContainer,
searchEmail,
handleSizeChange,
handleCurrentChange,
} = tableList(getBackendImageList)//备注:如果每个页面使用的接口不一样,可定义一个函数(例如:getBackendImageList)进行传参
</script>
更多推荐
已为社区贡献2条内容
所有评论(0)