mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-05 23:39:52 +00:00
Adapt pathes for importing ChillMainAssets in ts
This commit is contained in:
parent
262e76c993
commit
001fb269b3
@ -27,11 +27,11 @@
|
|||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { onMounted, ref } from 'vue'
|
import { onMounted, ref } from 'vue'
|
||||||
import { makeFetch } from "ChillMainAssets/lib/api/apiMethods";
|
import { makeFetch } from '../../../lib/api/apiMethods';
|
||||||
import Modal from '../../_components/Modal.vue'; // Adjust the import path
|
import Modal from '../../_components/Modal.vue'; // Adjust the import path
|
||||||
import { marked } from 'marked';
|
import { marked } from 'marked';
|
||||||
import DOMPurify from 'dompurify';
|
import DOMPurify from 'dompurify';
|
||||||
import { NewsItem } from "ChillMainAssets/types";
|
import { NewsItem } from '../../../types';
|
||||||
|
|
||||||
const newsItems = ref<NewsItem[]>([])
|
const newsItems = ref<NewsItem[]>([])
|
||||||
const selectedArticle = ref<NewsItem | null>(null);
|
const selectedArticle = ref<NewsItem | null>(null);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user