提交 4509baa5 authored 作者: lihuihui's avatar lihuihui

update

上级 26435544
No preview for this file type
......@@ -2,7 +2,7 @@ import { wrapFunctional } from './utils'
export { default as Foot } from '../../components/Foot.vue'
export { default as Head } from '../../components/Head.vue'
export { default as RightAside } from '../../components/rightAside.vue'
export { default as RightAside } from '../../components/RightAside.vue'
export { default as AboutContact } from '../../components/about/contact.vue'
export { default as AboutCulture } from '../../components/about/culture.vue'
export { default as AboutDetail } from '../../components/about/detail.vue'
......@@ -22,7 +22,7 @@ export { default as HomeServiceCase } from '../../components/home/serviceCase.vu
export const LazyFoot = import('../../components/Foot.vue' /* webpackChunkName: "components/foot" */).then(c => wrapFunctional(c.default || c))
export const LazyHead = import('../../components/Head.vue' /* webpackChunkName: "components/head" */).then(c => wrapFunctional(c.default || c))
export const LazyRightAside = import('../../components/rightAside.vue' /* webpackChunkName: "components/right-aside" */).then(c => wrapFunctional(c.default || c))
export const LazyRightAside = import('../../components/RightAside.vue' /* webpackChunkName: "components/right-aside" */).then(c => wrapFunctional(c.default || c))
export const LazyAboutContact = import('../../components/about/contact.vue' /* webpackChunkName: "components/about-contact" */).then(c => wrapFunctional(c.default || c))
export const LazyAboutCulture = import('../../components/about/culture.vue' /* webpackChunkName: "components/about-culture" */).then(c => wrapFunctional(c.default || c))
export const LazyAboutDetail = import('../../components/about/detail.vue' /* webpackChunkName: "components/about-detail" */).then(c => wrapFunctional(c.default || c))
......
......@@ -4,7 +4,7 @@ import { wrapFunctional } from './utils'
const components = {
Foot: () => import('../../components/Foot.vue' /* webpackChunkName: "components/foot" */).then(c => wrapFunctional(c.default || c)),
Head: () => import('../../components/Head.vue' /* webpackChunkName: "components/head" */).then(c => wrapFunctional(c.default || c)),
RightAside: () => import('../../components/rightAside.vue' /* webpackChunkName: "components/right-aside" */).then(c => wrapFunctional(c.default || c)),
RightAside: () => import('../../components/RightAside.vue' /* webpackChunkName: "components/right-aside" */).then(c => wrapFunctional(c.default || c)),
AboutContact: () => import('../../components/about/contact.vue' /* webpackChunkName: "components/about-contact" */).then(c => wrapFunctional(c.default || c)),
AboutCulture: () => import('../../components/about/culture.vue' /* webpackChunkName: "components/about-culture" */).then(c => wrapFunctional(c.default || c)),
AboutDetail: () => import('../../components/about/detail.vue' /* webpackChunkName: "components/about-detail" */).then(c => wrapFunctional(c.default || c)),
......
......@@ -8,7 +8,7 @@ You can directly use them in pages and other components without the need to impo
- `<Foot>` | `<foot>` (components/Foot.vue)
- `<Head>` | `<head>` (components/Head.vue)
- `<RightAside>` | `<right-aside>` (components/rightAside.vue)
- `<RightAside>` | `<right-aside>` (components/RightAside.vue)
- `<AboutContact>` | `<about-contact>` (components/about/contact.vue)
- `<AboutCulture>` | `<about-culture>` (components/about/culture.vue)
- `<AboutDetail>` | `<about-detail>` (components/about/detail.vue)
......
......@@ -10,6 +10,7 @@ const _10a7578c = () => interopDefault(import('../pages/about/culture.vue' /* we
const _23d2f0fd = () => interopDefault(import('../pages/about/introduce.vue' /* webpackChunkName: "pages/about/introduce" */))
const _7f16db65 = () => interopDefault(import('../pages/about/news.vue' /* webpackChunkName: "pages/about/news" */))
const _249d262e = () => interopDefault(import('../pages/about/news-detail.vue' /* webpackChunkName: "pages/about/news-detail" */))
const _77495298 = () => interopDefault(import('../pages/services/major.vue' /* webpackChunkName: "pages/services/major" */))
const _4d95ac32 = () => interopDefault(import('../pages/index.vue' /* webpackChunkName: "pages/index" */))
const emptyFn = () => {}
......@@ -47,6 +48,10 @@ export const routerOptions = {
path: "/about/news-detail",
component: _249d262e,
name: "about-news-detail"
}, {
path: "/services/major",
component: _77495298,
name: "services-major"
}, {
path: "/",
component: _4d95ac32,
......
......@@ -41,6 +41,13 @@
"chunkName": "pages/about/news-detail",
"_name": "_249d262e"
},
{
"name": "services-major",
"path": "/services/major",
"component": "/Users/lihui/Desktop/H/ezijing/guangwangAndXiangmuzhan/ezijing-www-pc/pages/services/major.vue",
"chunkName": "pages/services/major",
"_name": "_77495298"
},
{
"name": "index",
"path": "/",
......
......@@ -6,7 +6,7 @@
"description": "Auto imported from components/Head.vue"
},
"RightAside": {
"description": "Auto imported from components/rightAside.vue"
"description": "Auto imported from components/RightAside.vue"
},
"AboutContact": {
"description": "Auto imported from components/about/contact.vue"
......
......@@ -3,6 +3,7 @@
<Head />
<Nuxt />
<Foot />
<RightAside />
</div>
</template>
<style>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -16,8 +16,6 @@
<open-class :class="isScale && 'scale space6'" />
<!-- 教育服务案例 -->
<service-case :class="isScale && 'scale space7'"/>
<!-- 右侧功能栏 -->
<right-aside />
</div>
</template>
......@@ -30,7 +28,6 @@ import headmasterMsg from '../components/home/headmasterMsg'
import alumniStories from '../components/home/alumniStories'
import openClass from '../components/home/openClass'
import serviceCase from '../components/home/serviceCase'
import rightAside from '../components/rightAside'
export default {
components: {
banner,
......@@ -40,8 +37,7 @@ export default {
headmasterMsg,
alumniStories,
openClass,
serviceCase,
rightAside
serviceCase
},
data () {
return {
......
<template>
<div>
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
</style>
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论