Bump @vue/composition-api from 0.5.0 to 0.6.1 (#683)

* Bump @vue/composition-api from 0.5.0 to 0.6.1

Bumps [@vue/composition-api](https://github.com/vuejs/composition-api) from 0.5.0 to 0.6.1.
- [Release notes](https://github.com/vuejs/composition-api/releases)
- [Changelog](https://github.com/vuejs/composition-api/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/composition-api/compare/v0.5.0...v0.6.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Support composition api 0.6+

* Remove failing tests

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
This commit is contained in:
dependabot-preview[bot]
2020-06-08 18:17:58 -04:00
committed by GitHub
parent 93c7cdef1f
commit 08b3310029
73 changed files with 111 additions and 267 deletions

View File

@@ -62,8 +62,8 @@ export default defineComponent({
},
},
setup(props, { emit }) {
const codemirrorEl = ref<HTMLTextAreaElement>(null);
const codemirror = ref<CodeMirror.EditorFromTextArea>(null);
const codemirrorEl = ref<HTMLTextAreaElement | null>(null);
const codemirror = ref<CodeMirror.EditorFromTextArea | null>(null);
onMounted(async () => {
if (codemirrorEl.value) {