This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A Tour of reactive() | |
import { reactive, ref, watch } from 'vue' | |
/** | |
reactive() - Type Definition: | |
function reactive<T extends object>(target: T): UnwrapNestedRefs<T> | |
**/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A Tour of ref() | |
import { ref, reactive } from 'vue' | |
/** | |
ref() - Type Definition: | |
function ref<T>(value: T): Ref<UnwrapRef<T>> | |
interface Ref<T> { |