Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
吕 成东
InzyCompanyPortal
Commits
a87efb77
Commit
a87efb77
authored
Jun 03, 2025
by
吕 成东
Browse files
初始化项目
parent
800b45f3
Pipeline
#3079
canceled with stages
Changes
63
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/views/NewsView.vue
0 → 100644
View file @
a87efb77
<
script
setup
>
import
TheHeader
from
'
../components/TheHeader.vue
'
import
TheFooter
from
'
../components/TheFooter.vue
'
</
script
>
<
template
>
<div
class=
"news"
>
<TheHeader
/>
<div
class=
"center-width"
style=
"padding: 50px 0; min-height: 400px;"
>
<h1>
新闻资讯
</h1>
<p>
此页面正在开发中...
</p>
</div>
<TheFooter
/>
</div>
</
template
>
\ No newline at end of file
src/views/ProductsView.vue
0 → 100644
View file @
a87efb77
<
script
setup
>
import
TheHeader
from
'
../components/TheHeader.vue
'
import
TheFooter
from
'
../components/TheFooter.vue
'
</
script
>
<
template
>
<div
class=
"products"
>
<TheHeader
/>
<div
class=
"center-width"
style=
"padding: 50px 0; min-height: 400px;"
>
<h1>
产品技术
</h1>
<p>
此页面正在开发中...
</p>
</div>
<TheFooter
/>
</div>
</
template
>
<
style
>
h1
{
margin-bottom
:
20px
;
}
</
style
>
\ No newline at end of file
vite.config.js
0 → 100644
View file @
a87efb77
import
{
defineConfig
}
from
"
vite
"
;
import
{
fileURLToPath
,
URL
}
from
"
node:url
"
;
import
vue
from
"
@vitejs/plugin-vue
"
;
// https://vite.dev/config/
export
default
defineConfig
({
plugins
:
[
vue
()],
// 配置@/
resolve
:
{
alias
:
{
"
@
"
:
fileURLToPath
(
new
URL
(
"
./src
"
,
import
.
meta
.
url
)),
},
},
});
Prev
1
2
3
4
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment