Skip to content

Visnalize/win7-ui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

29 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

win7-ui

npm npm npm bundle size

Vue2 component library for recreating Windows 7 UI.

๐Ÿš€ Quick start

npm i win7-ui
# or
yarn add win7-ui
// main.js or index.js
import Vue from "vue";
import Winui from "win7-ui";
import "win7-ui/lib/style.css";
...
Vue.use(Winui);

new Vue({
  ...
}).$mount("#app");
<template>
  <winui-button @click="doSomething">Hello world!</winui-button>
</template>

<script>
export default {
  methods: {
    doSomething() {}
  }
}
</script>

<style>
...
</style>

๐Ÿ“š Documentation

Refer to the official site

๐Ÿ“ Changelog

Refer to Releases

๐Ÿ“บ Showcase