remix-ui
v1.20.17
Published
A UI kit for VueJS
Downloads
727
Readme
Remix UI
A set of UI components for VueJS.
Full documentation can be found at: https://ronniesan.github.io/remix-ui/#/
Installation
- Install via NPM.
npm install remix-ui
- Import and use Remix UI in your VueJS application in the main
app.js
file.
// Import the library as a dependency
import RemixUI from 'remix-ui';
// Register the component library
Vue.use(RemixUI);
// Then, initialize the VueJS app
const app = new Vue({
el : '#app',
template : '<div><!-- REMIX UI COMPONENTS ARE NOW AVAILABLE HERE --></div>'
});
Using Remix UI Styles with Webpack
In order to use the styling included with Remix UI, you'll need to create an alias to the styles in your webpack config.
{
resolve : {
alias : {
'remix-ui-styles' : path.resolve(__dirname, 'node_modules/remix-ui/src/styles')
}
}
}