多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

42 lines
947 B

export const useNocoEe = () => {
const loadMagic = ref(false)
const predictColumnType = async (..._args: any) => {}
const optionsMagic = async (..._args: any) => {}
const predictFunction = async (..._args: any) => {}
const predictingNextColumn = ref(false)
const predictedNextColumn = ref()
const predictingNextFormulas = ref(false)
const predictedNextFormulas = ref()
const predictNextColumn = async (..._args: any) => {}
const predictNextFormulas = async (..._args: any) => {}
const createTableMagic = async (..._args: any) => {}
const createSchemaMagic = async (..._args: any) => {}
return {
loadMagic,
predictColumnType,
optionsMagic,
predictFunction,
table: {
predictingNextColumn,
predictedNextColumn,
predictNextColumn,
predictingNextFormulas,
predictedNextFormulas,
predictNextFormulas,
},
createTableMagic,
createSchemaMagic,
}
}