Skip to content

Instantly share code, notes, and snippets.

@sungchuni
Created January 31, 2020 10:12
Show Gist options
  • Save sungchuni/939730d2b5e5b55a865a37752bc6bc69 to your computer and use it in GitHub Desktop.
Save sungchuni/939730d2b5e5b55a865a37752bc6bc69 to your computer and use it in GitHub Desktop.
export default new Proxy({}, {
set(target, property, value) {
if (property === 'render') {
target[property] = function (h, vm) {
return value(h, vm);
};
} else {
target[property] = value;
}
return value;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment