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

https://github.com/wovue/off-canvas

OffCanvas vue component.
https://github.com/wovue/off-canvas

Last synced: 8 months ago
JSON representation

OffCanvas vue component.

Awesome Lists containing this project

README

          

# OffCanvas

> OffCanvas (Sidenav/Drawer) component for Vue.js

Create a smooth off-canvas sidebar that slides in and out of the page.

## Live examples & Docs

[https://wovue.github.io/off-canvas](https://wovue.github.io/off-canvas)

## Features

* a11y friendly.
* Support multiples OffCanvas.
* You can optionallity push your content when the OffCanvas is open.

## Getting Started

Install the package using npm

```sh
$ npm install wovue-off-canvas --save
```

Install the plugin

```js
require('wovue-off-canvas/dist/off-canvas.css')

import Vue from 'vue'
import OffCanvas from 'wovue-off-canvas'

Vue.use(OffCanvas)
```

**Note** only with `webpack` you can import `CSS` in javascript.

## Basic Usage

```html


Toggle menu

```

## Development

``` bash
# install dependencies
npm install

# serve with hot reload src-docs at localhost:8080
npm run dev

# build for production with minification src-docs and src
npm run build

# copy docs folder to gh-pages branch and push
npm run deploy-docs
```