spaceone-design-system SpaceONE Design System is based on Tailwindcss
See our OWNERS file.
This project is Apache 2.0 licensed.
npm i -S @spaceone/design-system
Add following lines to main.js
file.
import SpaceDesignSystem from '@spaceone/design-system';
Vue.use(SpaceDesignSystem);
Example:
import { PButtonTab, PDynamicLayout } from '@spaceone/design-system';
export default {
components: {
PButtonTab,
PDynamicLayout,
},
...
}
SpaceONE Design System is based on Tailwindcss.
If your project doesn't use tailwindcss, add the code below to main.ts
.
import '@spaceone/design-system/dist/css/style.css';
If your project use tailwindcss, you don't need to import all styles.
In that case, add codes below to your tailwind.config.js
.
const spaceoneTailwind = require('@spaceone/design-system/tailwind.config.js')
module.exports = {
theme: {
...spaceoneTailwind.theme,
// your customized theme
},
variants: [...spaceoneTailwind.variants,
//your customized variants
],
plugins: [
...spaceoneTailwind.plugins,
//your customized plugins
]
}
Also, you need to add codes below to your main.js
.
import '@spaceone/design-system/dist/css/light-style.css';
Author: spaceone-dev
Source Code: https://github.com/spaceone-dev/spaceone-design-system
In this article, we are going to list out the most popular websites using Vue JS as their frontend framework. Vue JS is one of those elite progressive JavaScript frameworks that has huge demand in the web development industry. Many popular websites are developed using Vue in their frontend development because of its imperative features.
Vue Native is a framework to build cross platform native mobile apps using JavaScript. It is a wrapper around the APIs of React Native. So, with Vue Native, you can do everything that you can do with React Native. With Vue Native, you get
In this article, youβll learn how to build a Vue custom select component that can be easily be styled using your own CSS. In fact, itβs the same component that we use in production on Qvault, and you can see it in action on the playground.
There are plenty of libraries out there that will have you up and running with a good tooltip solution in minutes. However, if you are like me, you are sick and tired of giant dependency trees that have the distinct possibility of breaking at any time.
Vue-ShortKey - The ultimate shortcut plugin to improve the UX .Vue-ShortKey - plugin for VueJS 2.x accepts shortcuts globaly and in a single listener.