@burh/nuxt-core 1.0.42 → 1.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,30 +1,14 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="quill">
|
|
3
3
|
<div :id="toolbarId">
|
|
4
|
-
<!-- <select class="ql-size">
|
|
5
|
-
<option value="small"></option>
|
|
6
|
-
<option selected></option>
|
|
7
|
-
<option value="large"></option>
|
|
8
|
-
<option value="huge"></option>
|
|
9
|
-
</select>
|
|
10
|
-
<div class="ql-formats">
|
|
11
|
-
<button class="ql-header" value="1"></button>
|
|
12
|
-
<button class="ql-header" value="2"></button>
|
|
13
|
-
<button class="ql-bold"></button>
|
|
14
|
-
<button class="ql-italic"></button>
|
|
15
|
-
<button class="ql-underline"></button>
|
|
16
|
-
<button class="ql-link"></button>
|
|
17
|
-
<button class="ql-blockquote"></button>
|
|
18
|
-
<button class="ql-code"></button>
|
|
19
|
-
<button class="ql-image"></button>
|
|
20
|
-
<button type="button" class="ql-list" value="ordered"></button>
|
|
21
|
-
<button type="button" class="ql-list" value="bullet"></button>
|
|
22
|
-
</div> -->
|
|
23
4
|
</div>
|
|
24
5
|
<div :id="editorId" :name="name" class ref="editor"></div>
|
|
25
6
|
</div>
|
|
26
7
|
</template>
|
|
27
8
|
<script>
|
|
9
|
+
import 'quill/dist/quill.core.css'
|
|
10
|
+
import 'quill/dist/quill.snow.css'
|
|
11
|
+
import 'quill/dist/quill.bubble.css'
|
|
28
12
|
export default {
|
|
29
13
|
name: "html-editor",
|
|
30
14
|
props: {
|
|
@@ -124,7 +108,6 @@ export default {
|
|
|
124
108
|
};
|
|
125
109
|
</script>
|
|
126
110
|
<style lang="scss">
|
|
127
|
-
@import '@burh/nuxt-core/node_modules/quill/dist/quill.snow.css';
|
|
128
111
|
|
|
129
112
|
.ql-clipboard {
|
|
130
113
|
display: none;
|