Skip to content

Commit

Permalink
[Update] a better project name and colorful title
Browse files Browse the repository at this point in the history
  • Loading branch information
JunyaoHu committed Oct 6, 2023
1 parent a4ed05e commit fcd81c9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions src/components/sections/Title.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
export default {
data() {
return {
title: 'Our Project Template is All You Need',
title: 'Academic Project Page Template',
color_title: '(Vue based)',
title_color: '#42B883',
authors: [
{
name: "Junyao Hu",
Expand Down Expand Up @@ -72,7 +74,12 @@ export default {
<template>
<div>
<el-row>
<el-col :span="22"><h1 class="title0">{{ title }}</h1></el-col>
<el-col :span="22">
<h1 class="title0">
{{ title }}
<span v-if="color_title" :style="{color:title_color}"> {{ color_title }}</span>
</h1>
</el-col>
</el-row>

<el-row>
Expand Down
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
plugins: [
vue(),
],
base:'/Our-Project-Template-is-All-You-Need/',
base:'/academic-project-page-template-vue/',
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
Expand Down

0 comments on commit fcd81c9

Please sign in to comment.