Skip to content

Commit 917251f

Browse files
committed
🏗️ 更新架构并支持dev调试
1 parent e54e422 commit 917251f

File tree

6 files changed

+234
-223
lines changed

6 files changed

+234
-223
lines changed

.env.example

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
VUE_APP_BASE_URL=http://127.0.0.1:8000
12
DATABASE_URL=mysql+mysqlconnector://username:password@localhost/dbname

src/App.vue

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<template>
22
<h1>果之都智库</h1>
3-
<ExcelUploader/>
4-
<ContactPerson/>
3+
<Copywriter/>
4+
<Contacts/>
55
</template>
66

77
<script>
8-
import ContactPerson from './components/ContactPerson.vue'
9-
import ExcelUploader from './components/ExcelUploader.vue'
8+
import Contacts from './components/ContactsView/ContactsView.vue'
9+
import Copywriter from './components/CopywriterView/CopywriterView.vue'
1010
1111
export default {
1212
name: 'App',
1313
components: {
14-
ExcelUploader,
15-
ContactPerson
14+
Copywriter,
15+
Contacts
1616
}
1717
}
1818
</script>

src/components/ContactPerson.vue

-210
This file was deleted.

0 commit comments

Comments
 (0)