1.1.5 • Published 5 years ago

vue-browserlike-window v1.1.5

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

CircleCI

Vue BrowserLike Window

Draggable and Resizable UI like browser.

demo

How to use

  • install
npm i -D vue-browserlike-window
yarn add  -D vue-browserlike-window
  • main.js
import VBWindow from 'vue-browserlike-window'

Vue.use(VBWindow)
  • *.vue
<template>
  <vb-window
    v-model="open"
    @close="open = false"
    :top="100"
    :left="100"
    :active="0"
    :tabs="['tab1', 'tab2', 'tab3']"
    mode="tab"
  >
    <vb-window-item>item1</vb-window-item>
    <vb-window-item>item2</vb-window-item>
    <vb-window-item>item3</vb-window-item>
  </vb-window>
</template>
nametypediscription
mode"tab"tab mode setting
topnumbertop position
leftnumberleft position
activeactivedefault active tab number
tabsstring[]tab menus
1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago