1.1.12 • Published 6 years ago

vue-container-component v1.1.12

Weekly downloads
11
License
MIT
Repository
github
Last release
6 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

6 years ago

1.1.11

6 years ago

1.1.10

6 years ago

1.1.9

6 years ago

1.1.8

6 years ago

1.1.7

6 years ago

1.1.6

6 years ago

1.1.5

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago