mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-01 14:46:37 +08:00
9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
|
|
const useField=()=>{
|
|
const field=ref("zd")
|
|
onMounted(() => {
|
|
console.log(`the component is now mounted. field`)
|
|
});
|
|
return {field};
|
|
}
|
|
export default useField; |