Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix syntax highlighting #1

Merged
merged 1 commit into from Jul 13, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -15,7 +15,7 @@ Notification Alert for Vue.

## Installation

```
```bash
npm install vue-notify-me --save
```

Expand All @@ -36,7 +36,7 @@ npm install vue-notify-me --save

Include the component in your .vue file.

```
```html
<template>
<notify-me
:event-bus="bus">
Expand All @@ -54,7 +54,7 @@ If you'd like to use the component in a SPA set a single template on your layout
and fire your notification through your central event bus.
Set any available prop for the component like this:

```
```html
<notify-me
container="notification"
status="alert-success"
Expand All @@ -73,7 +73,7 @@ Set any available prop for the component like this:

To show a notification just fire an event like this:

```
```js
<script>
import Notify from 'vue-notify-me'

Expand Down Expand Up @@ -104,7 +104,7 @@ export default {

You may also add any available prop through the event emitter:

```
```js
this.bus.$emit('notify-me', {
permanent: true,
status: this.status,
Expand Down