Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,21 @@

## Installation

### Use with Vue CLI

#### Generating simple webpack boilerplate with Vue-cli

*Note*: you can skip this part if you already have application generated.

```bash
npm install -g vue-cli
vue init webpack-simple my-project
cd my-project
npm install
npm run dev
```

#### Add vue-froala-wysiwyg
Install `vue-froala-wysiwyg` from `npm`

```bash
Expand Down Expand Up @@ -79,6 +94,8 @@ export default {

#### 2. Make sure you have the right Webpack settings for loading the CSS files, Font Awesome and jQuery.

*Note*: you can skip this part if you created your application using boiler plate generation code stated above.

```javascript
var webpack = require('webpack')
var path = require('path')
Expand Down