-
**Is your feature request related to a problem? Please describe.**
Using [Vue composition API](https://composition-api.vuejs.org/#summary) you can use the `setup` method when [initiating Vue](https:/…
-
It took me some time to figure out that I needed to use `Vue.use(vueCompositionApi.default)` when using the cdn version of the composition api.
```html
Vue.use(vu…
-
After starting with jest + Quasar I have a couple of proposals which I think will greatly improve the usability of the supplied `mountQuasar` utility.
### Support using either `mount` or `shallowMo…
-
```html
Title
Vue.use(vueCompositionApi.default);
//1. Create a globally Shared reactive object
const store = vueCompositionApi.reactive({
…
-
## 🚀 Feature Proposal
It would be great if the user could control the shallowCopy in a way to tell what keys to skip during the process. The easiest thing would be if we could provide a predicate w…
-
# Project by CLL3😢😣
## In main.js:
```js
import VueCompositionApi from '@vue/composition-api';
Vue.use(VueCompositionApi);
```
## In App.vue:
```html
Count is: {{ state.count }}, d…
-
Hi, thank you for the great work!
I have some functions (wrappers for Jest `mount()` helper) which expect a `Vue` parameter to provide autocomplete for the `vm`.
Until https://github.com/vuejs/c…
-
Currently I try to get the attributes inside my vue component while using vue-test-utils
I have included the VueCompositionAPI
here is my code
`
import Vue from 'vue'
import VueCompositionApi f…
-
Code snippet:
```javascript
// menu.vue
export default {
name: 'Menu',
setup(props, context) {
// logic here...
return () => h('div', options, children)
}
}
// test.js
const…
-
I have a npm package using components which are calling `inject`:
```vue
import { computed, inject } from "@vue/composition-api";
import MessageItem from "@/components/common/Messag…