Skip to content

Commit

Permalink
Docs: Fix imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
gorzelinski committed Sep 19, 2024
1 parent 9a1cbbb commit d9633f7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/getting-started/integrations-cdn/vuejs-v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ This directive specifies the editor to be used by the component. It must directl
</template>

<script>
import { ClassicEditor } from 'ckeditor5';
const { ClassicEditor } = CKEDITOR;
export default {
name: 'app',
Expand Down Expand Up @@ -162,7 +162,7 @@ A [standard directive](https://vuejs.org/v2/api/#v-model) for form inputs in Vue
</template>

<script>
import { ClassicEditor } from 'ckeditor5';
const { ClassicEditor } = CKEDITOR;
export default {
name: 'app',
Expand Down Expand Up @@ -195,7 +195,7 @@ Allows a one–way data binding that sets the content of the editor. Unlike [`v-
</template>

<script>
import { ClassicEditor } from 'ckeditor5';
const { ClassicEditor } = CKEDITOR;
export default {
name: 'app',
Expand All @@ -221,7 +221,7 @@ Specifies the {@link module:core/editor/editorconfig~EditorConfig configuration}
</template>

<script>
import { ClassicEditor } from 'ckeditor5';
const { ClassicEditor } = CKEDITOR;
export default {
name: 'app',
Expand Down Expand Up @@ -249,7 +249,7 @@ It sets the initial read–only state of the editor and changes it during its li
</template>

<script>
import { ClassicEditor } from 'ckeditor5';
const { ClassicEditor } = CKEDITOR;
export default {
name: 'app',
Expand Down

0 comments on commit d9633f7

Please sign in to comment.