Document and structure utils / compositions (#168)

* Document and structure utils / compositions

* Fix tests

* Ignore tests in sonar cloud?

* Please sonar don't use my test files
This commit is contained in:
Rijk van Zanten
2020-03-12 12:31:36 -04:00
committed by GitHub
parent 7c732579c8
commit 68c625ec79
42 changed files with 260 additions and 119 deletions

View File

@@ -1,7 +1,7 @@
import { mount, createLocalVue } from '@vue/test-utils';
import VueCompositionAPI, { ref } from '@vue/composition-api';
import DrawerDetail from './drawer-detail.vue';
import * as GroupableComposition from '@/compositions/groupable';
import * as GroupableComposition from '@/compositions/groupable/groupable';
import VIcon from '@/components/v-icon';
const localVue = createLocalVue();

View File

@@ -1,3 +1,10 @@
# Views
Views are the top-level parent component that are used in all modules. Directus will only have two Views for the foreseeable future: `public` and `private` for non-authenticated and authenticated routes respectively
Views are the top-level parent component that are used in all modules. Directus will only have two
Views for the foreseeable future: `public` and `private` for non-authenticated and authenticated
routes respectively.
## Table of Contents
* [Private View](./private-view)
* [Public View](./public)