-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b9c037c
commit 1c43b1c
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Vue2Editor Notes | ||
|
||
> Things To Remember | ||
## Importing Quill's styles | ||
|
||
``` scss | ||
@import '~quill/dist/quill.core.css'; | ||
@import '~quill/dist/quill.bubble.css'; | ||
@import '~quill/dist/quill.snow.css'; | ||
``` | ||
|
||
**Both of these work** | ||
|
||
``` js | ||
import "vue2-editor/dist/css/vue2-editor.css"; | ||
import "quill/dist/quill.snow.css"; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
Todo: | ||
☐ Need to fix build so regular builds are including `CSS` | ||
☐ NEED TO UPDATE CSS BUILD SO IT ONLY OUTPUTS YOUR CUSTOM CSS AND THEN THE USER CAN IMPORT QUILL'S STYLES ON THEIR OWN | ||
☐ Possibly change it `import 'vue2-editor/dist/vue2-editor.modular.js'` |