Skip to content

Commit 0b37ea2

Browse files
committed
docs: update docs
1 parent ada629a commit 0b37ea2

File tree

2 files changed

+12
-15
lines changed

2 files changed

+12
-15
lines changed

docs/content/guide/themes.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,5 @@ Then, pass the name of the theme to the [`theme prop`](../api/props.md).
1919
~~~ vue
2020
<template>
2121
<QuillEditor theme="snow" .../>
22-
23-
<!-- you can bind :theme and it will automatically re render when its value change -->
24-
<QuillEditor :theme="value" .../>
2522
</template>
2623
~~~

test/vue-quill.test.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
import DummyClass from "../src/vue-quill"
1+
import { QuillEditor } from "../src/main"
22

3-
/**
4-
* Dummy test
5-
*/
6-
describe("Dummy test", () => {
7-
it("works if true is truthy", () => {
8-
expect(true).toBeTruthy()
9-
})
3+
// /**
4+
// * Dummy test
5+
// */
6+
// describe("Dummy test", () => {
7+
// it("works if true is truthy", () => {
8+
// expect(true).toBeTruthy()
9+
// })
1010

11-
it("DummyClass is instantiable", () => {
12-
expect(new DummyClass()).toBeInstanceOf(DummyClass)
13-
})
14-
})
11+
// it("DummyClass is instantiable", () => {
12+
// expect(new DummyClass()).toBeInstanceOf(DummyClass)
13+
// })
14+
// })

0 commit comments

Comments
 (0)