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

@@ -203,7 +203,7 @@ export default defineComponent({
},
},
setup(props) {
const layout = ref<LayoutComponent>(null);
const layout = ref<LayoutComponent | null>(null);
const { collection } = toRefs(props);
const bookmarkID = computed(() => (props.bookmark ? +props.bookmark : null));

View File

@@ -220,7 +220,7 @@ export default defineComponent({
const { collection, primaryKey } = toRefs(props);
const { breadcrumb } = useBreadcrumb();
const revisionsDrawerDetail = ref<Vue>(null);
const revisionsDrawerDetail = ref<Vue | null>(null);
const { info: collectionInfo, softDeleteStatus, primaryKeyField } = useCollection(collection);
@@ -246,7 +246,7 @@ export default defineComponent({
const confirmSoftDelete = ref(false);
const confirmLeave = ref(false);
const leaveTo = ref<string>(null);
const leaveTo = ref<string | null>(null);
const backLink = computed(() => `/${currentProjectKey.value}/collections/${collection.value}/`);