All Projects → maestro-server → bootue

maestro-server / bootue

Licence: MIT license
❄️ Bootstrap + Vue 2 - 100% Components

Programming Languages

SCSS
7915 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects
Vue
7211 projects

Projects that are alternatives of or similar to bootue

capacitor-vue-ionicv4-app
sample app using capacitor vuejs and ionicv4 components
Stars: ✭ 70 (+400%)
Mutual labels:  webcomponents, vue2
vue2-dialog
A mobile Vue plugin for VueDialog
Stars: ✭ 21 (+50%)
Mutual labels:  vue2
vuejs2-wysiwyg
jQuery Summernote WYSIWYG Editor implementation for REST based single page applications that run on vue.js 2.0.
Stars: ✭ 15 (+7.14%)
Mutual labels:  vue2
vue-amazeui
一只基于Amaze UI Touch React.js 的移动端 Web 组件库样式的基础上用Vue2.0.js来重构的移动端 Web 组件库。
Stars: ✭ 40 (+185.71%)
Mutual labels:  vue2
modulor-html
Missing template engine for Web Components
Stars: ✭ 36 (+157.14%)
Mutual labels:  webcomponents
event-driven-web-components-realworld-example-app
Exemplary real world application built with Vanilla JS Web Components in an Event Driven Architecture
Stars: ✭ 55 (+292.86%)
Mutual labels:  webcomponents
app-starter
Angular mono-repo (Ionic/Capacitor/StencilJS/Web Component) app starter for supporting cross platform apps.
Stars: ✭ 75 (+435.71%)
Mutual labels:  webcomponents
Flue
Yep, another Flux implementation for Vuejs. Docs: https://francescosaveriozuppichini.github.io/Flue/header.html
Stars: ✭ 13 (-7.14%)
Mutual labels:  vue2
vue-number-keyboard
vue-number-keyboard是基于VUE实现的数字键盘插件,当前支持整数、小数数字输入、乱序键盘,demo中给出了常用的验证码、金额数字示例。数字键盘的大小包括字体尺寸支持响应式。
Stars: ✭ 51 (+264.29%)
Mutual labels:  vue2
kemal-vue-chat
this is experimental repo for Kemal and Vue.js (+ WebSocket)
Stars: ✭ 32 (+128.57%)
Mutual labels:  vue2
vue-mintUI-demo
采用vue2、Mint UI,做的移动端项目
Stars: ✭ 17 (+21.43%)
Mutual labels:  vue2
quasar-hackernews
HackerNews clone built with Vue 2.0, vue-router & vuex & Quasar Framework, with server-side rendering
Stars: ✭ 25 (+78.57%)
Mutual labels:  vue2
qiokian
🙊 live2d anime waifu vuejs component.
Stars: ✭ 34 (+142.86%)
Mutual labels:  vue2
vue-lazy-load-img
vue版本的lazy-load-img图片懒加载插件
Stars: ✭ 31 (+121.43%)
Mutual labels:  vue2
toggle
Vue 3 toggle component with labels, custom slots and styling options (+Tailwind CSS support).
Stars: ✭ 75 (+435.71%)
Mutual labels:  vue2
create-evergreen-app
Get up and running with an evergreen web application development stack designed by, and for, today's modern web.
Stars: ✭ 16 (+14.29%)
Mutual labels:  webcomponents
vue-observable
IntersectionObserver, MutationObserver and PerformanceObserver in Vue.js
Stars: ✭ 24 (+71.43%)
Mutual labels:  vue2
vaadin-dialog
High quality web component for modal dialogs. Part of the Vaadin platform.
Stars: ✭ 15 (+7.14%)
Mutual labels:  webcomponents
vue2-leaflet-vectorgrid
A Leaflet.VectorGrid plugin for the vue2-leaflet package.
Stars: ✭ 17 (+21.43%)
Mutual labels:  vue2
plastic-bag
An open source library to work with micro frontends.
Stars: ✭ 22 (+57.14%)
Mutual labels:  webcomponents

Code Climate Build Status Issue Count david-dm.org Codacy Badge

Bootue - Boostrap 3 + Vue = 100% Self Contained Components

  • 100% Bootstrap components built with Vue 2.
  • No boostrap.css, bootstrap.js, jQuery, or any 3rd party plugins required.
  • Really, its full Stand Lone library.

About

The goal of project is provide a easy way to organize, customize, and incorporate all elements of your's project. For this we organize all elements into self contained components, splitting all variables and codes put into each folder, each component have yours variables, events, styles and more. Bootue its group of elements components self contained, organized, with multiple featured to incorporate and using in any SPA project.

Bootue make simple way to extends and modify boostrap variables, effects and featured, her provide a possibility to you using party of outhers frameworks together with boostrap components, create a new one or using only elements that you need.

  • Vue-Cli - (browserify or webpack)
  • Node - Sass (vue-loader-sass)
  • Setup webpack to make url-loader for fonts (font-awesome)

** EDIT: After some feedbacks, we decide to use bootue only for Maestro Server, in outhers words, all support and new features will be create if ought to be a necessity in Maestro Servers goals **

Let's started

First all bootue is build using vue-cli system, you need to install and setup a vueify (browserify) or vue-loader(webpack) env, Install Vue Cli, you maybe use webpack or browserfy.

$ npm install -g vue-cli
$ vue init webpack-simple demo // bootue works with webpack or browserify
$ vue init browserify demo

Webpack env Make sure to install sass pre-compiled environment (in all cli installation he ask you if you like to setup sass (default is NO), write YES, and be happy)

Build Setup

$ npm install bootue

import Bootue from 'bootue'

Vue.use(Bootue) // import all components

or

import alert from 'bootue/src/alert'

Vue.component('alert', alert)

// or

new Vue({
  components: {
    alert
  }
})

or

$ npm install bootue

var alert = require('bootue/src/alert');
var alert = require('bootue/src').alert;

new Vue({
  components: {
    alert: alert
  }
})


// After babel 6, yoou need iteract with default property.
var alert = require('bootue/src/alert').default;

Webpack Env - Font Awesome

Some components using font-awesome icons (font-awesome is optional), if you like to use this font, you have to setup webpack to correctly load.

If you using easy installation (Vue.use), you need to configure url-loader in webpack. (Because webpack will try to use load font files)

WebPack 2.X

$ npm install url-loader

{
  module:
  {
    test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
    loader: 'url-loader', // you need to install this loader
    query: {
      limit: 10000,
      name: 'fonts/[name].[ext]'
    }
  }
}

WebPack 1.X

module: {
  loaders: [
    {
      test: /\.woff2?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
      // Limiting the size of the woff fonts breaks font-awesome ONLY for the extract text plugin
      // loader: "url?limit=10000"
      loader: "url"
    },
    {
      test: /\.(ttf|eot|svg)(\?[\s\S]+)?$/,
      loader: 'file'
    },
  ]
},

Import bootue system into your project

If you prefer, maybe to import all components files and import inside to project, remember the goal is transfer all power to select, customize and extends to any scss parts to project. In deep, bootue is a reorganized boostrap splitting code, her have SCSS Components, Js Components and Hybrid Components.

//strutucture folder to generic vue 2 project
- vuex
- components
  - pages
    - home
    - contact
  - bootue
    - _core
      - typography // all scss components need to be inside _code folder
      - utilities
    - grids
    - index.js // use to make import components easy

We import bootue components aside page's project, the ideia its full integration scss rules into project.

Why should I care about this structure? Why not use NPM?

When I began bootue, my problem is, I have a very custom layouts in any SPA project, but all the elements in its excence its the same. i would like exist a central repository with self contanied elements, dont bother me with import scss bases, navigate and change 1000 lines in variables.scss, i like to get and put that element and works.

With that mind, the project intent to, split and organized all business logic's of bootstrap, possibility to choose and modify exacly parts i want, possibility to export the module for other projects using a top contained delivery, and possibility to using 100% component tree system modules

And updates? Come on, you execute a update your bootstrap frequently? Boostrap 3 update frequently? The risk exist, bootue needs to bug fix, him will update, for this situation you need to copy and paste parcially, yes its not a best situation, but in moment its acceptable.

Docs

See the documentation with live editable examples.

Develop Local Setup

$ npm install

$ npm run dev

// default portr is 8080

License

Bootue is licensed under The MIT License.

Autor


@signorini
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].