Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
boco-frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
idatt2106_2022_02
boco-frontend
Merge requests
!12
API login mock tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
API login mock tests
api-login-unit-tests
into
main
Overview
0
Commits
12
Pipelines
12
Changes
5
Merged
Titus Netland
requested to merge
api-login-unit-tests
into
main
3 years ago
Overview
0
Commits
12
Pipelines
12
Changes
5
Expand
API tests for login and mock tests
Edited
3 years ago
by
Titus Netland
0
0
Merge request reports
Compare
main
version 11
db170cd9
3 years ago
version 10
6d216cf1
3 years ago
version 9
ce24d172
3 years ago
version 8
d062dcc0
3 years ago
version 7
85d812eb
3 years ago
version 6
6bb2458e
3 years ago
version 5
f989e76d
3 years ago
version 4
031f0cc0
3 years ago
version 3
89371e64
3 years ago
version 2
9a80a037
3 years ago
version 1
8d29f93c
3 years ago
main (base)
and
latest version
latest version
091ffcbc
12 commits,
3 years ago
version 11
db170cd9
11 commits,
3 years ago
version 10
6d216cf1
10 commits,
3 years ago
version 9
ce24d172
9 commits,
3 years ago
version 8
d062dcc0
8 commits,
3 years ago
version 7
85d812eb
7 commits,
3 years ago
version 6
6bb2458e
6 commits,
3 years ago
version 5
f989e76d
5 commits,
3 years ago
version 4
031f0cc0
4 commits,
3 years ago
version 3
89371e64
3 commits,
3 years ago
version 2
9a80a037
2 commits,
3 years ago
version 1
8d29f93c
1 commit,
3 years ago
5 files
+
72
−
167
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
src/components/HelloWorld.vue
+
8
−
120
Options
<
template
>
<v-container>
<v-row
class=
"text-center"
>
<v-col
cols=
"12"
>
<v-img
:src=
"require('../assets/logo.svg')"
class=
"my-3"
contain
height=
"200"
/>
</v-col>
<div
class=
"flex justify-center"
>
<router-link
to=
"/"
class=
"m-6"
>
Logg inn
</router-link>
<v-col
class=
"mb-4"
>
<h1
class=
"display-2 font-weight-bold mb-3"
>
Welcome to the Vuetify 3 Beta
</h1>
<router-link
to=
"/register"
class=
"m-6"
>
Registrer deg
</router-link>
<p
class=
"subheading font-weight-regular"
>
For help and collaboration with other Vuetify developers,
<br
/>
please join our online
<a
href=
"https://community.vuetifyjs.com"
target=
"_blank"
>
Discord Community
</a
>
</p>
</v-col>
<v-col
class=
"mb-5"
cols=
"12"
>
<h2
class=
"headline font-weight-bold mb-5"
>
What's next?
</h2>
<v-row
justify=
"center"
>
<a
v-for=
"(next, i) in whatsNext"
:key=
"i"
:href=
"next.href"
class=
"subheading mx-3"
target=
"_blank"
>
{{
next
.
text
}}
</a>
</v-row>
</v-col>
<v-col
class=
"mb-5"
cols=
"12"
>
<h2
class=
"headline font-weight-bold mb-5"
>
Important Links
</h2>
<v-row
justify=
"center"
>
<a
v-for=
"(link, i) in importantLinks"
:key=
"i"
:href=
"link.href"
class=
"subheading mx-3"
target=
"_blank"
>
{{
link
.
text
}}
</a>
</v-row>
</v-col>
<v-col
class=
"mb-5"
cols=
"12"
>
<h2
class=
"headline font-weight-bold mb-5"
>
Ecosystem
</h2>
<v-row
justify=
"center"
>
<a
v-for=
"(eco, i) in ecosystem"
:key=
"i"
:href=
"eco.href"
class=
"subheading mx-3"
target=
"_blank"
>
{{
eco
.
text
}}
</a>
</v-row>
</v-col>
</v-row>
</v-container>
<router-link
to=
"/about"
class=
"m-6"
>
Om BoCo
</router-link>
</div>
</
template
>
<
script
>
@@ -80,52 +13,7 @@ export default {
name
:
"
HelloWorld
"
,
data
:
()
=>
({
ecosystem
:
[
{
text
:
"
vuetify-loader
"
,
href
:
"
https://github.com/vuetifyjs/vuetify-loader
"
,
},
{
text
:
"
github
"
,
href
:
"
https://github.com/vuetifyjs/vuetify
"
,
},
{
text
:
"
awesome-vuetify
"
,
href
:
"
https://github.com/vuetifyjs/awesome-vuetify
"
,
},
],
importantLinks
:
[
{
text
:
"
Chat
"
,
href
:
"
https://community.vuetifyjs.com
"
,
},
{
text
:
"
Made with Vuetify
"
,
href
:
"
https://madewithvuejs.com/vuetify
"
,
},
{
text
:
"
Twitter
"
,
href
:
"
https://twitter.com/vuetifyjs
"
,
},
{
text
:
"
Articles
"
,
href
:
"
https://medium.com/vuetify
"
,
},
],
whatsNext
:
[
{
text
:
"
Explore components
"
,
href
:
"
https://vuetifyjs.com
"
,
},
{
text
:
"
Roadmap
"
,
href
:
"
https://vuetifyjs.com/introduction/roadmap/
"
,
},
{
text
:
"
Frequently Asked Questions
"
,
href
:
"
https://vuetifyjs.com/getting-started/frequently-asked-questions
"
,
},
],
}),
};
}),
}
</
script
>
Loading