An open API service indexing awesome lists of open source software.

https://github.com/kavalcante/vue-container-component

Simple container component inspired on Bootstrap Container
https://github.com/kavalcante/vue-container-component

component vue vuejs-components vuejs2

Last synced: 10 months ago
JSON representation

Simple container component inspired on Bootstrap Container

Awesome Lists containing this project

README

          

# vue-container-component

A simple container component inspired on Bootstrap container

## Getting Started

#### NPM

```bash
$ npm install vue-container-component --save
```

#### Clone this repo

Clone or [download](https://github.com/kavalcante/vue-container-component/archive/master.zip) the component and save in your own project.

## Installing

#### ES6
```js
import container from 'vue-container-component';

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

#### CommonJS

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

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

## USAGE

#### Common usage

```html

```

#### Container fluid

```html

```

#### Custom tag

```html

```

## Attributes

| Option | Default | Type | Description |
| :------------ | :------------ | :----- | :--------- |
| __fluid__ | false | boolean| Enable container fluid |
| __tag__ | div | string | Custom element tag |

## License

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