Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Nexrender TU
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Schwertgen
Nexrender TU
Commits
2c4dbeca
Commit
2c4dbeca
authored
11 months ago
by
Brendan Lawton
Browse files
Options
Downloads
Plain Diff
Merge Konflikte erledigt und App.vue hinzugefügt
parents
88983471
ed3dcb94
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/App.vue
+30
-10
30 additions, 10 deletions
src/App.vue
src/components/Form.vue
+21
-0
21 additions, 0 deletions
src/components/Form.vue
with
51 additions
and
10 deletions
src/App.vue
+
30
−
10
View file @
2c4dbeca
...
...
@@ -8,15 +8,33 @@ const vorname = ref("");
const
nachname
=
ref
(
""
);
const
funktionZeileEins
=
ref
(
""
);
const
funktionZeileZwei
=
ref
(
""
);
const
BBEcke
=
ref
(
""
);
let
playLottieStatus
=
ref
(
false
);
let
pauseLottieStatus
=
ref
(
false
)
function
playLottie
(
data
:
boolean
)
{
playLottieStatus
.
value
=
data
}
function
pauseLottie
(
data
:
boolean
)
{
pauseLottieStatus
.
value
=
data
}
</
script
>
<
template
>
<div
class=
"logo"
>
<img
class=
"logoImg"
src=
"./assets/rbb-logo.png"
>
</div>
<div
class=
"appGrid"
>
<Form
v-model:vorname=
"vorname"
v-model:nachname=
"nachname"
v-model:funktionZeileEins=
"funktionZeileEins"
v-model:funktionZeileZwei=
"funktionZeileZwei"
v-model:BBEcke =
"BBEcke"
v-on:playLottie=
"playLottie"
v-on:pauseLottie=
"pauseLottie"
></Form>
<Lottie
...
...
@@ -24,27 +42,29 @@ const funktionZeileZwei = ref("");
:nachname=
"nachname"
:funktionZeileEins=
"funktionZeileEins"
:funktionZeileZwei=
"funktionZeileZwei"
:BBEcke =
"BBEcke"
:playLottieStatus =
"playLottieStatus"
:pauseLottieStatus =
"pauseLottieStatus"
></Lottie>
</div>
</
template
>
<
style
scoped
>
.logo
{
height
:
6em
;
padding
:
1.5em
;
will-change
:
filter
;
transition
:
filter
300ms
;
text-align
:
center
;
margin
:
auto
;
padding-bottom
:
50px
;
}
.logo
:hover
{
filter
:
drop-shadow
(
0
0
2em
#646cff
aa
)
;
.logo
Img
{
width
:
200px
;
}
.logo.vue
:hover
{
filter
:
drop-shadow
(
0
0
2em
#42b883
aa
);
}
.appGrid
{
display
:
grid
;
grid-template-columns
:
auto
auto
auto
auto
;
gap
:
50px
;
}
body
{
background-color
:
#FFF
;
}
</
style
>
This diff is collapsed.
Click to expand it.
src/components/Form.vue
+
21
−
0
View file @
2c4dbeca
...
...
@@ -18,11 +18,13 @@ function pauseAnimation() {
</
script
>
<
template
>
<div
class=
"form"
>
<h2
class=
"title"
>
rbb24 Reportage Bauchbinde
</h2>
<div
class=
"container"
>
<label>
Postion der Bauchbinde
</label>
<div
class=
"row"
>
<<<<<<<
HEAD
<select
id=
"bauchbindeEcke"
v-model=
"BBEcke"
>
<option
value=
"rechts"
selected
>
rechts
</option>
<option
value=
"links"
>
links
</option>
...
...
@@ -51,6 +53,22 @@ function pauseAnimation() {
<button
class=
"pauseLottie-btn"
@
click=
"pauseAnimation"
>
Lottie Pausieren
</button>
=======
<label>
Vorname
</label>
<input
type=
"text"
v-model=
"vorname"
/>
</div>
<div
class=
"row"
>
<label>
Nachname
</label>
<input
type=
"text"
v-model=
"nachname"
/>
</div>
<div
class=
"row"
>
<label>
Funktion 1. Zeile
</label>
<input
type=
"text"
v-model=
"funktionZeileEins"
/>
</div>
<div
class=
"row"
>
<label>
Funktion 2. Zeile
</label>
<input
type=
"text"
v-model=
"funktionZeileZwei"
/>
>>>>>>> ed3dcb946f9ad82682aa98ac33c5dbd9d2e87887
</div>
</div>
</div>
...
...
@@ -66,6 +84,7 @@ function pauseAnimation() {
border
:
1px
solid
#fff
;
height
:
25px
;
}
<<<<<<<
HEAD
#app
{
text-align
:
unset
!important
;
...
...
@@ -120,4 +139,6 @@ function pauseAnimation() {
.form
{
height
:
115%
;
}
=======
>>>>>>>
ed3dcb946f9ad82682aa98ac33c5dbd9d2e87887
</
style
>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment