Package Exports
- x-backend
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (x-backend) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
x-adminlte

A simple x-component for Adminlte template with Vuejs
Installation
npm install x-backend --saveImport the package into main.js file
import "bootstrap/dist/css/bootstrap.min.css";
import "admin-lte/dist/css/AdminLTE.min.css";
import Vue from 'vue'
import XBackend from 'x-backend'
Vue.use(XBackend)Usage
Example.vue
<template>
<x-box title="x-backend">
<x-alert/>
</x-box>
</template>
<script>
export default {
}
</script>
<style scoped>
</style>Available components
Widget
UI Elements
XAlert
| props | type | default |
|---|---|---|
| variant | string | info |
| title | string | Alert! |
| summary | string | Info alert preview. This alert is dismissable. |
XButton
| props | type | default |
|---|---|---|
| variant | string | primary |
| label | string | Save |
| size | string | sm |
| disabled | boolean | false |
| flat | boolean | false |