Vue 3 component library for recreating Windows 7 UI.
npm i 7.css-vue 7.css
# or
yarn add 7.css-vue 7.css
# or
bun add 7.css-vue 7.css
// main.js or index.js
import { createApp } from "vue";
import Win from "7.css-vue";
// Import the bundled CSS (includes 7.css + component styles)
import "7.css-vue/dist/7.css-vue.css";
const app = createApp(...);
app.use(Win);
app.mount('#app');
Refer to the official site (Coming soon)