New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

vue-browserlike-window

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-browserlike-window

vue draggable and resizable window

latest
Source
npmnpm
Version
1.1.5
Version published
Maintainers
1
Created
Source

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

Keywords

vue

FAQs

Package last updated on 23 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts