Socket
Book a DemoInstallSign in
Socket

@jswf/vue

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jswf/vue

Virtual window component for Vue.js

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

@jswf/vue

npm version Virtual window component for Vue.js

1.Contents

1.1 Basic explanation

Components for realizing virtual windows with Vue.js Just enclose with JSWindow and it will become a virtual window

1.2 Currently available features

  • MoveWindow
  • Resize
  • Maximize
  • Minimize
  • Parent-child window
  • SplitScreen

2.Screen shot

Screen Shot

4.Sample source

<template>
  <div id="app">
    <img alt="Vue logo" src="./assets/logo.png" />
    <!-- Add JSWindow-->
    <JSWindow title="Virtual Window">
      <HelloWorld msg="Welcome to Your Vue.js App" />
    </JSWindow>
    <!---------------->
  </div>
</template>

<script>
import HelloWorld from "./components/HelloWorld.vue";
import { JSWindow } from "@jswf/vue"; //Add
export default {
  name: "app",
  components: {
    HelloWorld,
    JSWindow //Add
  }
};
</script>

<style>
#app {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

5.Component list

JSWindow SplitView

6.license

MIT

Keywords

vue

FAQs

Package last updated on 03 Dec 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