mirror of
https://github.com/directus/directus.git
synced 2026-02-19 10:14:33 -05:00
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:
@@ -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();
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user