1.1.12 • Published 7 years ago

vue-container-component v1.1.12

Weekly downloads
11
License
MIT
Repository
github
Last release
7 years ago

vue-container-component

A simple container component inspired on Bootstrap container

Getting Started

NPM

$ npm install vue-container-component --save

Clone this repo

Clone or download the component and save in your own project.

Installing

ES6

import container from 'vue-container-component';

new Vue({
  components: {
    container
  }
})

CommonJS

var container = require('vue-container-component');

new Vue({
  components: {
    'container': container
  }
})

USAGE

Common usage

<container>
  <!-- content -->
</container>

Container fluid

<container fluid>
  <!-- content -->
</container>

Custom tag

<container tag="section">
  <!-- content -->
</container>

Attributes

OptionDefaultTypeDescription
fluidfalsebooleanEnable container fluid
tagdivstringCustom element tag

License

This project is licensed under the MIT License - see the LICENSE.md file for details

1.1.12

7 years ago

1.1.11

7 years ago

1.1.10

7 years ago

1.1.9

7 years ago

1.1.8

7 years ago

1.1.7

7 years ago

1.1.6

7 years ago

1.1.5

7 years ago

1.1.4

7 years ago

1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago