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

Fixes froala-labs/froala-editor-js-2#2713 #133

Open
wants to merge 1 commit into
base: v2
Choose a base branch
from
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