Skip to content

Commit 3a26898

Browse files
committed
【website】【示例】【修复打包wenclient站点失败问题】
1 parent 7b3f7d8 commit 3a26898

File tree

28 files changed

+33
-33
lines changed

28 files changed

+33
-33
lines changed

website/src/config/components/CardGroup/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</template>
2929

3030
<script>
31-
import CardView from '@/components/CardView/index';
31+
import CardView from '@/config/components/CardView/index';
3232
3333
export default {
3434
name: 'card-group',

website/src/config/components/Gallery/GalleryCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</template>
3131

3232
<script>
33-
import CardGroup from "@/components/CardGroup";
33+
import CardGroup from "@/config/components/CardGroup";
3434
3535
export default {
3636
name: "gallery",

website/src/config/components/Tabs/PluginTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default {
4040
.overview-header {
4141
width: 100%;
4242
height: 240px;
43-
background-image: url('../../../public/static/assets/tab/plugin.png');
43+
background-image: url('../../../../public/static/assets/tab/plugin.png');
4444
background-size: 100% 240px;
4545
4646
.title {

website/src/config/components/Tabs/StandardTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default {
3434
.overview-header {
3535
width: 100%;
3636
height: 240px;
37-
background-image: url('../../../public/static/assets/tab/standard.png');
37+
background-image: url('../../../../public/static/assets/tab/standard.png');
3838
background-size: 100% 240px;
3939
4040
.title {

website/src/config/components/Tabs/TotalTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default {
3636
.overview-header {
3737
width: 100%;
3838
height: 240px;
39-
background-image: url('../../../public/static/assets/tab/total.png');
39+
background-image: url('../../../../public/static/assets/tab/total.png');
4040
background-size: 100% 240px;
4141
4242
.title {

website/src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import ElementUI from 'element-ui';
1010
// import Antd from 'ant-design-vue';
1111
// import 'ant-design-vue/dist/antd.less';
1212

13-
import IconFont from './components/IconFont/iconfont'
13+
import IconFont from './config/components/IconFont/iconfont'
1414
import VueLazyload from 'vue-lazyload'
1515

1616
import ECharts from 'vue-echarts'

website/src/views/demo/ShowCase.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<script>
3838
import axios from 'axios';
3939
import { Header, SidebarDemo, MainFooter } from '@/views/layout/components';
40-
import IconFont from '@/components/IconFont/iconfront';
40+
import IconFont from '@/config/components/IconFont/iconfront';
4141
import { isMobile } from '@/utils/mobile';
4242
4343
export default {

website/src/views/demo/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ import 'codemirror/theme/solarized.css';
140140
141141
// import { getHtml, getMarkdown } from "@/api/demo";
142142
import axios from 'axios';
143-
import IconFont from '@/components/IconFont/iconfront';
143+
import IconFont from '@/config/components/IconFont/iconfront';
144144
import ShowGallery from './ShowGallery';
145145
146146
export default {

website/src/views/empty/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
<script>
3636
import { Header, MainFooter } from '../layout/components';
37-
import PluginTab from '@/components/Tabs/PluginTab';
37+
import PluginTab from '@/config/components/Tabs/PluginTab';
3838
import { isMobile } from '@/utils/mobile';
3939
export default {
4040
name: 'Page404',

website/src/views/gallery/Gallery.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ import { isMobile } from "@/utils/mobile";
8484
8585
import { Header, SidebarGallery, MainFooter } from "@/views/layout/components";
8686
87-
import GalleryCard from "@/components/Gallery/GalleryCard";
88-
import IconFont from "@/components/IconFont/iconfront";
87+
import GalleryCard from "@/config/components/Gallery/GalleryCard";
88+
import IconFont from "@/config/components/IconFont/iconfront";
8989
9090
import GalleryAnchor from './GalleryAnchor';
9191

0 commit comments

Comments
 (0)