All Projects → lusaxweb → Vuesax

lusaxweb / Vuesax

Licence: mit
New Framework Components for Vue.js 2

Programming Languages

javascript
184084 projects - #8 most used programming language
Vue
7211 projects
stylus
462 projects
shell
77523 projects

Projects that are alternatives of or similar to Vuesax

V Bar
The virtual responsive crossbrowser scrollbar component for VueJS 2x
Stars: ✭ 216 (-95.92%)
Mutual labels:  component, vue-components, vuejs2, vue2
Vue Form Json Schema
Create forms using JSON schema. Bring your components!
Stars: ✭ 253 (-95.22%)
Mutual labels:  component, vue-components, vuejs2, vue2
Vue Share Buttons
🔗A set of social buttons for Vue.js
Stars: ✭ 34 (-99.36%)
Mutual labels:  component, vue-components, vuejs2, vue2
Vue Swatches
🎨 Help the user picking beautiful colors!
Stars: ✭ 456 (-91.38%)
Mutual labels:  component, vue-components, vuejs2
Vue Touch Ripple
👆 Touch ripple component for @vuejs
Stars: ✭ 443 (-91.63%)
Mutual labels:  vue-components, vuejs2, vue2
Maz Ui
Stand-alone components library to build your interfaces with Vue.JS & Nuxt.JS
Stars: ✭ 109 (-97.94%)
Mutual labels:  library, component, vue-components
Vue Info Card
Simple and beautiful card component with an elegant spark line, for VueJS.
Stars: ✭ 159 (-97%)
Mutual labels:  component, vue-components, vuejs2
vue-notification-bell
Vue.js notification bell component.
Stars: ✭ 64 (-98.79%)
Mutual labels:  vuejs2, vue-components, vue2
Vuent
🎨 Vue.js components implementing Microsoft Fluent Design
Stars: ✭ 207 (-96.09%)
Mutual labels:  library, vue-components, vuejs2
Tui
This is a high quanlity components library for VUE
Stars: ✭ 258 (-95.13%)
Mutual labels:  vue-components, vuejs2, vue2
Vue Cnodejs
基于vue.js重写Cnodejs.org社区的webapp
Stars: ✭ 3,065 (-42.09%)
Mutual labels:  vue-components, vuejs2, vue2
Vue Gl
Vue.js components rendering 3D WebGL graphics reactively with three.js
Stars: ✭ 434 (-91.8%)
Mutual labels:  vue-components, vuejs2, vue2
Vue Marquee Text Component
[CSS GPU Animation] Marquee Text for vuejs
Stars: ✭ 226 (-95.73%)
Mutual labels:  component, vuejs2, vue2
Mui Vue2
mui+mint+vue2.x+vue-router+vuex+webpack最终打包成原生apk的app项目,样式使用vue移动端mint ui框架,原生手机能力偏重于mui框架,欢迎star!
Stars: ✭ 278 (-94.75%)
Mutual labels:  vue-components, vuejs2, vue2
Vuenut
⚙️ Developer tools for vue js (Vuex)
Stars: ✭ 305 (-94.24%)
Mutual labels:  library, vue-components, vue2
Awesome Ui Component Library
Curated list of framework component libraries for UI styles/toolkit
Stars: ✭ 702 (-86.74%)
Mutual labels:  framework, library, vue-components
Vue Video Player
🎞 @videojs component for @vuejs
Stars: ✭ 4,026 (-23.94%)
Mutual labels:  vue-components, vuejs2, vue2
Vue Flip
A Vue.js component to flip elements.
Stars: ✭ 37 (-99.3%)
Mutual labels:  component, vue-components, vuejs2
Stf Vue Select
stf vue select - most flexible and customized select
Stars: ✭ 61 (-98.85%)
Mutual labels:  component, vuejs2, vue2
Vuejs Component Style Guide
Vue.js Component Style Guide
Stars: ✭ 2,796 (-47.18%)
Mutual labels:  vue-components, vuejs2, vue2

vuesax vuesax


travis ci badge Downloads Version Chat

Supporting through Patreon

Vuesax is an open source MIT project if you want to contribute to keep improving, If you are interested in supporting this project, please consider becoming a patron. Patron

Become a Patron

Silver

Tipe Bit Bit

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 4 (alpha)

We are already creating vuesax 4 you can see the progress here and if you want to help in the development you can do it here

Support the project

If you feel awesome and want to support us in a small way, please consider starring and sharing the repo! This helps us getting known and grow the community. 🙏

vuesax-star

Links

Components

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/vuesax/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/dist/vue.js"></script>
  <script src="https://cdn.jsdelivr.net/npm/vuesax/dist/vuesax.umd.js"></script>
  <script>
    new Vue({
      el: '#app'
    })
  </script>
</body>
</html>

CDN Links

Install inside a NPM project

# npm
npm install vuesax
# yarn
yarn add vuesax

Use

All components

import Vue from 'vue'
import Vuesax from 'vuesax'

import 'vuesax/dist/vuesax.css'
Vue.use(Vuesax)

Or use individual components:

import Vue from 'vue'
import { vsButton, vsSelect, vsPopup } from 'vuesax'
import 'vuesax/dist/vuesax.css'

Vue.use(vsButton)
Vue.use(vsSelect)
Vue.use(vsPopup)

Contribution

Please make sure to read the Contributing Guide before making a pull request.

Lusaxweb

This library was created and is supported by Lusaxweb

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].