历史版本文档地址
深色模式
unref
import { deepUnref } from '@mixte/use'; const source = { a: ref(1), b: computed(() => [ ref(2), computed(() => 3), ]), c: 4, }; console.log(deepUnref(source)); // -> { a: 1, b: [ 2, 3 ], c: 4 }