UNPKG

vue-mutable

Version:

Proxies your props into mutable local state.

17 lines (14 loc) 297 B
import { proxyMutableProps as mutableProps } from "./proxyMutableProps"; /** * @type {PluginObject} */ const VueMutable = { /** * @param Vue {VueConstructor} * @param options {{}} */ install(Vue, options) { Vue.mixin(mutableProps); } }; export { VueMutable, mutableProps };