Vue
Installation
You can either install the full component library:
import RepairComponents from 'repair-components';
Vue.use(RepairComponents, {
// options (see below)
});
...or import only the specific components you need:
<script>
import { RButton, RSection } from 'repair-components';
export default {
components: {
RButton,
RSection,
},
};
</script>