parent
852d1efd3a
commit
5b8d8ce9bf
|
|
@ -63,7 +63,7 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { get_math } from '@/utils';
|
import { get_math } from '@/utils';
|
||||||
import ArticleAPI from '@/api/article';
|
import ArticleAPI from '@/api/article';
|
||||||
import { articleStore } from '@/store/article';
|
import { articleStore } from '@/store';
|
||||||
const article_store = articleStore();
|
const article_store = articleStore();
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
value: {
|
value: {
|
||||||
|
|
|
||||||
|
|
@ -88,7 +88,7 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { get_math, tabs_style } from '@/utils';
|
import { get_math, tabs_style } from '@/utils';
|
||||||
import ArticleAPI from '@/api/article';
|
import ArticleAPI from '@/api/article';
|
||||||
import { articleStore } from '@/store/article';
|
import { articleStore } from '@/store';
|
||||||
const article_store = articleStore();
|
const article_store = articleStore();
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
value: {
|
value: {
|
||||||
|
|
|
||||||
|
|
@ -165,7 +165,7 @@ import { background_computer, get_math, gradient_computer, padding_computer, rad
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { SortableEvent, VueDraggable } from 'vue-draggable-plus';
|
import { SortableEvent, VueDraggable } from 'vue-draggable-plus';
|
||||||
import defaultSettings from './index';
|
import defaultSettings from './index';
|
||||||
import { footerNavCounterStore } from '@/store/modules/footer-nav-content';
|
import { footerNavCounterStore } from '@/store';
|
||||||
const footer_nav_counter_store = footerNavCounterStore();
|
const footer_nav_counter_store = footerNavCounterStore();
|
||||||
const app = getCurrentInstance();
|
const app = getCurrentInstance();
|
||||||
import { isEmpty } from 'lodash';
|
import { isEmpty } from 'lodash';
|
||||||
|
|
|
||||||
|
|
@ -12,4 +12,5 @@ export * from './modules/upload';
|
||||||
export * from './modules/shop';
|
export * from './modules/shop';
|
||||||
export * from './modules/url-value';
|
export * from './modules/url-value';
|
||||||
export * from './modules/custom';
|
export * from './modules/custom';
|
||||||
|
export * from './modules/article';
|
||||||
export { store };
|
export { store };
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue