Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
tacc-frontend
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Wen Wei Li
tacc-frontend
Commits
0943d66f
Commit
0943d66f
authored
Apr 29, 2024
by
Wen Wei Li
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial commit
parent
328e1e92
Pipeline
#5993
failed with stages
Changes
9
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
4198 additions
and
1141 deletions
+4198
-1141
package-lock.json
package-lock.json
+4074
-1105
package.json
package.json
+24
-5
public/index.html
public/index.html
+1
-0
src/App.vue
src/App.vue
+12
-3
src/components/Footer.vue
src/components/Footer.vue
+31
-0
src/components/HelloWorld.vue
src/components/HelloWorld.vue
+15
-26
src/components/Navbar.vue
src/components/Navbar.vue
+27
-0
src/main.js
src/main.js
+5
-1
vue.config.js
vue.config.js
+9
-1
No files found.
package-lock.json
View file @
0943d66f
This diff is collapsed.
Click to expand it.
package.json
View file @
0943d66f
...
...
@@ -8,17 +8,36 @@
"lint"
:
"vue-cli-service lint"
},
"dependencies"
:
{
"
@coreui/coreui
"
:
"
^5.0.0
"
,
"
@coreui/vue
"
:
"
^5.0.0
"
,
"
@popperjs/core
"
:
"
^2.11.8
"
,
"
@vue/compat
"
:
"
^3.4.25
"
,
"
bootstrap
"
:
"
^5.3.3
"
,
"
bootstrap-vue
"
:
"
^2.23.1
"
,
"
core-js
"
:
"
^3.8.3
"
,
"
vue
"
:
"
^3.2.13
"
"
flowbite
"
:
"
^2.3.0
"
,
"
flowbite-vue
"
:
"
^0.1.3
"
,
"
vite
"
:
"
^5.2.10
"
,
"
vue
"
:
"
^3.4.25
"
,
"
vue-navigation-bar
"
:
"
^6.1.0
"
},
"devDependencies"
:
{
"
@babel/core
"
:
"
^7.12.16
"
,
"
@babel/eslint-parser
"
:
"
^7.12.16
"
,
"
@vue/cli-plugin-babel
"
:
"
~5.0.0
"
,
"
@vue/cli-plugin-eslint
"
:
"
~5.0.0
"
,
"
@vue/cli-service
"
:
"
~5.0.0
"
,
"
eslint
"
:
"
^7.32.0
"
,
"
eslint-plugin-vue
"
:
"
^8.0.3
"
"
@vue/cli-service
"
:
"
^5.0.8
"
,
"
autoprefixer
"
:
"
^10.4.19
"
,
"
css-loader
"
:
"
^7.1.1
"
,
"
postcss-loader
"
:
"
^8.1.1
"
,
"
sass
"
:
"
^1.75.0
"
,
"
sass-loader
"
:
"
^14.2.1
"
,
"
style-loader
"
:
"
^4.0.0
"
,
"
tailwindcss
"
:
"
^3.4.3
"
,
"
unplugin-auto-import
"
:
"
^0.16.1
"
,
"
unplugin-vue-components
"
:
"
^0.25.2
"
,
"
webpack
"
:
"
^5.91.0
"
,
"
webpack-cli
"
:
"
^5.1.4
"
,
"
webpack-dev-server
"
:
"
^5.0.4
"
},
"eslintConfig"
:
{
"root"
:
true
,
...
...
public/index.html
View file @
0943d66f
...
...
@@ -4,6 +4,7 @@
<meta
charset=
"utf-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"viewport"
content=
"width=device-width,initial-scale=1.0"
>
<link
rel=
"icon"
href=
"<%= BASE_URL %>favicon.ico"
>
<title><
%=
htmlWebpackPlugin
.
options
.
title
%
></title>
</head>
...
...
src/App.vue
View file @
0943d66f
/* eslint-disable */
<
template
>
<img
alt=
"Vue logo"
src=
"./assets/logo.png"
>
<HelloWorld
msg=
"Welcome to Your Vue.js App"
/>
<Navbar></Navbar>
<HelloWorld
msg=
"Welcome to Your Vue.js App"
/>
<Footer></Footer>
</
template
>
<
script
>
import
HelloWorld
from
'
./components/HelloWorld.vue
'
import
Navbar
from
'
./components/Navbar.vue
'
import
Footer
from
'
./components/Footer.vue
'
export
default
{
name
:
'
App
'
,
components
:
{
HelloWorld
HelloWorld
,
Navbar
,
Footer
}
}
</
script
>
...
...
@@ -23,4 +31,5 @@ export default {
color
:
#2c3e50
;
margin-top
:
60px
;
}
</
style
>
src/components/Footer.vue
0 → 100644
View file @
0943d66f
<
template
>
<CFooter>
<div>
<CLink
href=
"https://coreui.io"
>
CoreUI
</CLink>
<span>
©
2021 creativeLabs.
</span>
</div>
<div>
<span>
Powered by
</span>
<CLink
href=
"https://coreui.io"
>
CoreUI
</CLink>
</div>
</CFooter>
</
template
>
<
script
>
import
{
CFooter
}
from
'
@coreui/vue
'
export
default
{
name
:
'
Footer
'
}
</
script
>
<
style
>
#footer
{
position
:
fixed
;
height
:
50px
;
background-color
:
red
;
bottom
:
0px
;
left
:
0px
;
right
:
0px
;
margin-bottom
:
0px
;
}
</
style
>
\ No newline at end of file
src/components/HelloWorld.vue
View file @
0943d66f
<
template
>
<CContainer>
<div
class=
"hello"
>
<h1>
{{
msg
}}
</h1>
<p>
For a guide and recipes on how to configure / customize this project,
<br>
check out the
<a
href=
"https://cli.vuejs.org"
target=
"_blank"
rel=
"noopener"
>
vue-cli documentation
</a>
.
</p>
<h3>
Installed CLI Plugins
</h3>
<ul>
<li><a
href=
"https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-babel"
target=
"_blank"
rel=
"noopener"
>
babel
</a></li>
<li><a
href=
"https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-eslint"
target=
"_blank"
rel=
"noopener"
>
eslint
</a></li>
</ul>
<h3>
Essential Links
</h3>
<ul>
<li><a
href=
"https://vuejs.org"
target=
"_blank"
rel=
"noopener"
>
Core Docs
</a></li>
<li><a
href=
"https://forum.vuejs.org"
target=
"_blank"
rel=
"noopener"
>
Forum
</a></li>
<li><a
href=
"https://chat.vuejs.org"
target=
"_blank"
rel=
"noopener"
>
Community Chat
</a></li>
<li><a
href=
"https://twitter.com/vuejs"
target=
"_blank"
rel=
"noopener"
>
Twitter
</a></li>
<li><a
href=
"https://news.vuejs.org"
target=
"_blank"
rel=
"noopener"
>
News
</a></li>
</ul>
<h3>
Ecosystem
</h3>
<ul>
<li><a
href=
"https://router.vuejs.org"
target=
"_blank"
rel=
"noopener"
>
vue-router
</a></li>
<li><a
href=
"https://vuex.vuejs.org"
target=
"_blank"
rel=
"noopener"
>
vuex
</a></li>
<li><a
href=
"https://github.com/vuejs/vue-devtools#vue-devtools"
target=
"_blank"
rel=
"noopener"
>
vue-devtools
</a></li>
<li><a
href=
"https://vue-loader.vuejs.org"
target=
"_blank"
rel=
"noopener"
>
vue-loader
</a></li>
<li><a
href=
"https://github.com/vuejs/awesome-vue"
target=
"_blank"
rel=
"noopener"
>
awesome-vue
</a></li>
</ul>
<div
class=
"container-fluid p-0"
>
<CAlert
color=
"primary"
class=
"d-flex align-items-center"
>
<svg
class=
"flex-shrink-0 me-2"
width=
"24"
height=
"24"
viewBox=
"0 0 512 512"
>
<rect
width=
"32"
height=
"176"
x=
"240"
y=
"176"
fill=
"var(--ci-primary-color, currentColor)"
class=
"ci-primary"
></rect><rect
width=
"32"
height=
"32"
x=
"240"
y=
"384"
fill=
"var(--ci-primary-color, currentColor)"
class=
"ci-primary"
></rect><path
fill=
"var(--ci-primary-color, currentColor)"
d=
"M274.014,16H237.986L16,445.174V496H496V445.174ZM464,464H48V452.959L256,50.826,464,452.959Z"
class=
"ci-primary"
></path>
</svg>
<div>
An example alert with an icon
</div>
</CAlert>
<button
type=
"button"
class=
"btn btn-success mx-1 my-3"
@
click=
"add"
>
ADD
</button>
</div>
</div>
</CContainer>
</
template
>
<
script
>
import
{
CContainer
,
CAlert
}
from
'
@coreui/vue
'
export
default
{
name
:
'
HelloWorld
'
,
props
:
{
msg
:
String
...
...
src/components/Navbar.vue
0 → 100644
View file @
0943d66f
<
template
>
<CNavbar
expand=
"lg"
color-scheme=
"light"
class=
"bg-light"
>
<CContainer
fluid
>
<CNavbarToggler
aria-label=
"Toggle navigation"
aria-expanded=
{visible} @click="visible = !visible"/>
<CNavbarBrand
href=
"#"
>
Navbar
</CNavbarBrand>
<CCollapse
class=
"navbar-collapse"
:visible=
"visible"
>
<CNavbarNav
class=
"me-auto mb-2 mb-lg-0"
>
<CNavItem>
<CNavLink
href=
"#"
active
>
Home
</CNavLink>
</CNavItem>
<CNavItem>
<CNavLink
href=
"#"
>
Link
</CNavLink>
</CNavItem>
</CNavbarNav>
</CCollapse>
</CContainer>
</CNavbar>
</
template
>
<
script
>
import
{
CContainer
,
CNavbarNav
,
CCollapse
,
CNavItem
,
CNavbar
,
CNavbarToggler
,
CNavbarBrand
}
from
'
@coreui/vue
'
export
default
{
name
:
'
Navbar
'
}
</
script
>
src/main.js
View file @
0943d66f
import
{
createApp
}
from
'
vue
'
import
{
createApp
}
from
'
vue
'
//in your `main.js` file
import
'
bootstrap/dist/css/bootstrap.min.css
'
import
'
@coreui/coreui/dist/css/coreui.min.css
'
import
App
from
'
./App.vue
'
createApp
(
App
).
mount
(
'
#app
'
)
vue.config.js
View file @
0943d66f
const
{
defineConfig
}
=
require
(
'
@vue/cli-service
'
)
const
AutoImport
=
require
(
'
unplugin-auto-import/webpack
'
)
const
Components
=
require
(
'
unplugin-vue-components/webpack
'
)
module
.
exports
=
defineConfig
({
transpileDependencies
:
true
transpileDependencies
:
true
,
configureWebpack
:{
plugins
:
[
AutoImport
({}),
Components
({}),
],
}
})
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