9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
|
|
const useTable=()=>{
|
|
const table=ref("数据表选择")
|
|
onMounted(() => {
|
|
console.log(`the component is now mounted. table`)
|
|
});
|
|
return {table};
|
|
}
|
|
export default useTable; |