vue-winbox icon indicating copy to clipboard operation
vue-winbox copied to clipboard

A Vue wrapper component for WinBox.js.

Results 10 vue-winbox issues
Sort by recently updated
recently updated
newest added

I'm trying to get it to work with Nuxt-rc6 and vue3 but im running into "ReferenceError: document is not defined" errors. ```vue import VueWinBox from 'vue-winbox'; const winboxRef = ref();...

Like in https://github.com/wobsoriano/v-perfect-signature/issues/6 I get the following errors when adding library in Vue2: ``` ERROR in ./node_modules/vue-winbox/dist/index.d.ts(5,34): 5:34 '"./node_modules/vue-demi/lib/index"' has no exported member named 'DefineComponent'. Did you mean 'defineComponent'? 3...

do not want to initialize and display at the beginning

want to insert components directly during function calls. ```js const createWindow = useWinBox() const generate = () => { const winbox = createWindow({ title: 'Window title', component: component, // comProps:...

Thanks for previous answer, now i actively using this library. But I think UI customization is necessary, how i achieve this? I have problem to custom `z-index` the position of...

Repeated switching of container component uninstallation and initialization winbox will error out. If you have the following component structure: ```js // ParentComponent visible default is false // WinBoxWrapper ``` 1.Change...

I'd like to automatically position the window relative to the parent. Let's say I got the following component called WinboxText.vue: ```vue // @ts-ignore import type { Params } from 'winbox';...

When I open the winbox on the page but do not close it, I switch the page. When I return to the page containing the winbox again, I find that...

I'm trying to use this component in a Vue3 project but no matter what, I keep getting this error. I created a Vue project with Vite, and it works great...