README
Introduction
Vuesax is a framework of components based on vue.js, it is a framework that is designed from scratch to be incrementally adoptable.
The framework is focused on facilitating the development of applications, improving the design of the same without removing the necessary functionality. we want all the components to be independent in colors, shapes and design for a freedom that we like all front-end but without losing the speed of creation and production.
Vuesax 3 for Vue 3
This fork bring vue 3 support to vuesax 3, There is still a lot of work to do, and there is still issues with some components, like VsTable, VsSwitch and VsSelect.
You should look for vuesax-next for vuesax 4, which is still in alpha.
Links
- 📘 Documentation
Status
| Status | Number of Components | Percentage |
|---|---|---|
| Vue 3 | 20 | 66.6% |
| Vue 2 | 8 | 26.6% |
| Unknown | 2 | 6.6% |
Components
- Buttons - vue3
- Selects - vue2
- Notifications - vue3
- Switch - vue3
- CheckBox - vue3
- Radio - vue3
- Input - vue3
- Dialogs - vue2
- Tabs - vue3
- Slider - vue3
- InputNumber - vue2
- Tooltip - vue3
- Upload - unknown
- Loading - vue2
- Popup - vue3
- Avatar - vue3
- Breadcrumb - vue2
- Alert - vue3 (except closable)
- Divider - vue3
- Chip - vue3
- Progress - unknown
- Card - vue3
- List - vue3
- Pagination - vue3
- NAvbar - vue3 (style/class binding issues)
- SideBar - vue2
- DropDown - vue3
- Table - vue2
- Textarea - vue3
- Collapse - vue2 (style issue)
- Images - vue3
To Be Fixed
- usages of vue router
- material icons
- Alert Closables
Browser Support
Recent versions of Firefox, Chrome, Edge, Opera and Safari. IE11+
Quick-start CDN
<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/vuesax3/dist/vuesax.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
</head>
<body>
<div id="app">
<vs-button vs-type="filled">Hello World</vs-button>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@next/dist/vue.global.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vuesax3@/dist/vuesax.umd.js"></script>
<script>
const app = window.Vue.createApp({});
app.use(window.Vuesax);
app.mount('#app');
</script>
</body>
</html>
Install inside a NPM project
# npm
npm install vuesax3
# yarn
yarn add vuesax3
Use
All components
import { createApp } from 'vue'
import Vuesax from 'vuesax3'
import 'vuesax3/dist/vuesax.css'
const app = createApp({})
app.use(Vuesax)
Or use individual components:
import { createApp } from 'vue'
import { vsButton, vsPrompt } from 'vuesax3'
import 'vuesax3/dist/vuesax.css'
const app = createApp({})
app.use(vsButton)
app.use(vsPrompt)
Contribution
Please make sure to read the Contributing Guide before making a pull request.
Lusaxweb
The upstream library was created and was supported by Lusaxweb