1.0.3 • Published 6 years ago

vue-browserlike-window v1.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
6 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

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago