Fengyuan Chen
Fengyuan Chen
@Clpsplug Sorry, I'm not sure what the `drums` is meaning exactly.
When you release the mouse on the transparent model, it will trigger a click event on the transparent model and then close the picker.
Try this: ```html { "imports": { "vue": "https://unpkg.com/vue@3/dist/vue.esm-browser.js", "@chenfengyuan/vue-number-input": "https://unpkg.com/@chenfengyuan/vue-number-input@2/dist/vue-number-input.esm.js" } } import { createApp } from 'vue' import VueNumberInput from '@chenfengyuan/vue-number-input' const app = createApp({}).mount("#app") app.component(VueNumberInput.name, VueNumberInput) ```
Don't use the module mode, try this(`vue-number-input-demo.html`): ```html VueNumberInput Demo const app = Vue.createApp({}); app.component(VueNumberInput.name, VueNumberInput); app.mount("#app"); ```
I have no idea about this. Any more details?
The wrapper element is required in some cases, such as #13.
What's the RcFile? Is it an image?
```js console.log(window.RcFile) ``` 👇 ``` Uncaught ReferenceError: RcFile is not defined ```
- [Can I use RcFile? ](https://caniuse.com/?search=RcFile) - 0 results found.
So I don't know what `RcFile` is.