summaryrefslogtreecommitdiff
path: root/front-end/src/views
diff options
context:
space:
mode:
Diffstat (limited to 'front-end/src/views')
-rw-r--r--front-end/src/views/Account/[comp].vue7
-rw-r--r--front-end/src/views/Blog/ckeditor/Editor.vue6
-rw-r--r--front-end/src/views/Blog/components/Posts/PostEdit.vue5
3 files changed, 6 insertions, 12 deletions
diff --git a/front-end/src/views/Account/[comp].vue b/front-end/src/views/Account/[comp].vue
index 9e6343d..d854e2e 100644
--- a/front-end/src/views/Account/[comp].vue
+++ b/front-end/src/views/Account/[comp].vue
@@ -58,10 +58,8 @@ const comp = useRouteParams<ComponentType>('comp')
const tabId = computed<number>(() =>{
switch (comp.value) {
- case ComponentType.Oauth:
- return 1
case ComponentType.Settings:
- return 2
+ return 1
case ComponentType.Profile:
default:
return 0
@@ -71,9 +69,6 @@ const tabId = computed<number>(() =>{
const onTabChange = (tabid : number) =>{
switch (tabid) {
case 1:
- comp.value = ComponentType.Oauth
- break
- case 2:
comp.value = ComponentType.Settings
break
case 0:
diff --git a/front-end/src/views/Blog/ckeditor/Editor.vue b/front-end/src/views/Blog/ckeditor/Editor.vue
index c3d637c..5bbf1cb 100644
--- a/front-end/src/views/Blog/ckeditor/Editor.vue
+++ b/front-end/src/views/Blog/ckeditor/Editor.vue
@@ -75,13 +75,11 @@ import { useSessionStorage } from '@vueuse/core';
import { tryOnMounted } from '@vueuse/shared';
import { apiCall } from '@vnuge/vnlib.browser';
import { Popover, PopoverButton, PopoverPanel, Switch } from '@headlessui/vue'
-import { BlogState } from '../blog-api'
import { Converter } from 'showdown'
-
-//Import the editor config
+import { BlogState } from '../blog-api'
import { useCkConfig } from './build.ts'
-import ContentSearch from '../components/ContentSearch.vue';
import { useUploadAdapter } from './uploadAdapter';
+import ContentSearch from '../components/ContentSearch.vue';
const emit = defineEmits(['change', 'load', 'mode-change'])
diff --git a/front-end/src/views/Blog/components/Posts/PostEdit.vue b/front-end/src/views/Blog/components/Posts/PostEdit.vue
index 0268508..4106256 100644
--- a/front-end/src/views/Blog/components/Posts/PostEdit.vue
+++ b/front-end/src/views/Blog/components/Posts/PostEdit.vue
@@ -41,16 +41,17 @@
</div>
</template>
<script setup lang="ts">
-import { computed, ref } from 'vue';
+import { computed, defineAsyncComponent, ref } from 'vue';
import { BlogState } from '../../blog-api';
import { reactiveComputed } from '@vueuse/core';
import { isNil, isString, split } from 'lodash-es';
import { PostMeta, useXmlProperties } from '@vnuge/cmnext-admin';
import { apiCall, useUser } from '@vnuge/vnlib.browser';
import { getPostForm } from '../../form-helpers';
-import Editor from '../../ckeditor/Editor.vue';
import FeedFields from '../FeedFields.vue';
+const Editor = defineAsyncComponent(() => import('../../ckeditor/Editor.vue'));
+
const emit = defineEmits(['close', 'submit', 'delete']);
const props = defineProps<{
blog: BlogState