Michal Levý

Results 22 comments of Michal Levý

I also think this should be optional. There are cases where using `v-model` on properties of object passed via a props greatly simplifies the code and if the behavior is...

This is indeed very needed. If `useField` is intended to be used to build "base" components, those components are sort of "dumb" - we need a way how to reason...

Unfortunately using new VS Code Terminal "Autoreply" feature does not help with this: settings.json ``` "terminal.integrated.autoReplies": { "Terminate batch job (Y/N)?": "Y\r", }, ``` After using "Restart Vite server" command,...

Just change it in [Workspace scope, not User](https://code.visualstudio.com/docs/getstarted/settings)

Haha, funny thing is I reported the very same bug in the [original repo](https://web.archive.org/web/20171226125957/http://flee.codeplex.com/discussions/269694) almost 11 years ago I ended up using pretty simple implementation of pooling cache (cloning expressions...

Yep, abstract head is exactly what i was doing. Thank for clarification. I don't have time to implement it now either

The problem was introduced with [this commit](https://github.com/axios/axios/commit/94a93447992392441f1928dffc9f10529ecec417) in Axios 0.23.0 by adding explicit type for default headers. This should not be too hard to fix. I can do the PR,...

Note that `script setup` proposal linked in OP was dropped. Current Vue 3 `script setup` is based on the [new proposal](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0040-script-setup.md) which has no `setup` context If I understand it...

@natemate90 Nope. `unplugin-auto-import` can only do the import part (`import { useI18n } from 'vue-i18n';`). You still need to **call it** - (it's not import) `const { t } =...

https://stackoverflow.com/q/59572951/381282