ai-chat-bot-interface 1.6.0 → 1.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/ChatUi.vue
CHANGED
|
@@ -197,7 +197,7 @@ import OkIcon from './components/icons/OkIcon.vue';
|
|
|
197
197
|
import AssistantReplay from './components/assistantReplay/assistantReplay.vue';
|
|
198
198
|
import StoreList from './components/StoreList/StoreList.vue';
|
|
199
199
|
import MarkdownViewer from './components/MarkdownPlan/MarkdownViewer.vue';
|
|
200
|
-
import PersonalForm from '
|
|
200
|
+
import PersonalForm from './components/personalForm/personalForm.vue';
|
|
201
201
|
|
|
202
202
|
const chatOptions = computed(() => {
|
|
203
203
|
return {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { computed, onMounted, ref } from 'vue';
|
|
3
|
-
import ArrowRight from '
|
|
4
|
-
import Popup from '
|
|
3
|
+
import ArrowRight from '../icons/ArrowRight.vue';
|
|
4
|
+
import Popup from '../popup/popup.vue';
|
|
5
5
|
import { showToast } from 'vant';
|
|
6
6
|
|
|
7
7
|
const showPopup = ref(false);
|