1.0.1 • Published 3 years ago

khakitron v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

Welcome to Khakitron - An awesome VUE UI Framework

Introduction

Khakitron is a vue ui framework which make use of the vue technologies and can be used in Vue 2.x versions.

Installation

npm install khakitron

Project setup

  1. Create a folder named khakitron under /src directory
  2. Create /src/khakitron/index.ts
  3. Put the following code inside /src/khakitron/index.ts:
import Vue from 'vue';

import Khakitron from 'khakitron';
 
Vue.use(Khakitron);
 
export default new Khakitron();
  1. in main.ts/js file, put following code inside:
import khakitron from '@/khakitron';

new Vue({
  khakitron, <---
  render: (h) => h(App),
}).$mount('#app');

Use

<TButton></TButton>
<TTextField></TTextField>

RoadMap

ComponentProgress
ButtonView Doc
BreadcrumbView Doc
TextFieldView Doc
TextAreaView Doc
SelectView Doc
MenuView Doc
G-IconView Doc
LinkView Doc
SlidesView Doc
CheckboxView Doc
Radio ButtonView Doc
TabsView Doc
ChipView Doc
TableView Doc
PaginationView Doc
SwitchView Doc
AvatarView Doc
TooltipIn Progress
ModalIn Progress
CardIn Progress
DividerIn Progress
IconIn Progress
Search BarPlanned
Multi-selectPlanned
Complex-TextFieldPlanned