Skip to content

Commit f265956

Browse files
committed
fix: element ui css link url
1 parent f2a776e commit f265956

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

app/web/component/layout/app/header/header.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<header class="header">
33
<div class="container"><h1>
4-
<a href="" class="router-link-active">vue-single-page</a></h1>
4+
<a href="" class="router-link-active">Egg + Vue</a></h1>
55
<ul class="nav">
66
<li class="nav-item"><a href="/app" :class="{'active' : selectedMenu === '/app'}">Single-Page</a></li>
77
<li class="nav-item"><a href="/" :class="{'active' : selectedMenu === '/'}">Multi-Page</a></li>

app/web/component/layout/app/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default {
1010
},
1111
computed: {
1212
vTitle() {
13-
return this.$root.title || this.title || 'egg-vue-webpack';
13+
return this.$root.title || this.title || 'Egg + Vue';
1414
},
1515
vKeywords() {
1616
return this.$root.keywords || this.keywords || 'egg, vue, webpack, server side render';

app/web/component/layout/simple/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
components: {},
66
computed: {
77
vTitle() {
8-
return this.$root.title || this.title || 'egg-vue-webpack';
8+
return this.$root.title || this.title || 'Egg + Vue';
99
},
1010
vKeywords() {
1111
return this.$root.keywords || this.keywords || 'egg-vue-webpack';

app/web/component/layout/standard/header/header.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<header class="header">
33
<div class="container"><h1>
4-
<a href="/" class="router-link-active">vue-multi-page</a></h1>
4+
<a href="/" class="router-link-active">Egg + Vue</a></h1>
55
<ul class="nav">
66
<li class="nav-item"><a href="/" :class="{'active' : selectedMenu === '/'}">Server-Render</a></li>
77
<li class="nav-item"><a href="/client" :class="{'active' : selectedMenu === '/client'}">Client-Render</a></li>

app/web/component/layout/standard/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const template = `<!DOCTYPE html>
1313
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
1414
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
1515
<link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/4.7.0/css/font-awesome.min.css">
16-
<link rel="stylesheet" href="iframe.php?url=https%3A%2F%2Funpkg.com%2Felement-ui%2Flib%2Ftheme-%3Cspan+class%3D"x x-first x-last">default/index.css">
16+
<link rel="stylesheet" href="iframe.php?url=https%3A%2F%2Funpkg.com%2Felement-ui%2Flib%2Ftheme-%3Cspan+class%3D"x x-first x-last">chalk/index.css">
1717
</head>
1818
<body :class="baseClass">
1919
<div id="app">${content}</div>
@@ -28,7 +28,7 @@ export default {
2828
},
2929
computed: {
3030
vTitle() {
31-
return this.$root.title || this.title || 'egg-vue-webpack';
31+
return this.$root.title || this.title || 'Egg + Vue';
3232
},
3333
vKeywords() {
3434
return this.$root.keywords || this.keywords || 'egg, vue, webpack, server side render';

0 commit comments

Comments
 (0)