Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
ProjectCreate
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
frontend
apps
ProjectCreate
Merge requests
!33
Sprint/2021 21
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Sprint/2021 21
Sprint/2021-21
into
master
Overview
0
Commits
4
Pipelines
3
Changes
12
Merged
Petar Hristov
requested to merge
Sprint/2021-21
into
master
3 years ago
Overview
0
Commits
4
Pipelines
3
Changes
12
0
0
Merge request reports
Compare
master
version 2
13cd4b51
3 years ago
version 1
487d50aa
3 years ago
master (base)
and
latest version
latest version
b5366801
4 commits,
3 years ago
version 2
13cd4b51
3 commits,
3 years ago
version 1
487d50aa
2 commits,
3 years ago
12 files
+
2579
−
1699
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
src/ProjectCreateApp.vue
+
10
−
10
View file @ b5366801
Edit in single-file editor
Open in Web IDE
Show full file
<
template
>
<div
id=
"projectcreate"
class=
"container"
>
<h4
style=
"text-align: left
;
"
>
{{
$t
(
'
headline
'
)
}}
:
</h4>
<component
:is=
"currentComponent"
v-bind:parentId=
"currentProjectId"
<h4
style=
"text-align: left"
>
{{
$t
(
"
headline
"
)
}}
:
</h4>
<component
:is=
"currentComponent"
v-bind:parentId=
"currentProjectId"
v-bind:languageLocale=
"language"
/>
</div>
</
template
>
<
script
lang=
"ts"
>
import
Vue
from
'
vue
'
;
import
CreateProject
from
'
@coscine/project-creation
'
;
import
'
@coscine/project-creation/dist/index.css
'
;
import
{
LanguageUtil
,
GuidUtil
}
from
'
@coscine/app-util
'
;
import
Vue
from
"
vue
"
;
import
CreateProject
from
"
@coscine/project-creation
"
;
import
"
@coscine/project-creation/dist/index.css
"
;
import
{
LanguageUtil
,
GuidUtil
}
from
"
@coscine/app-util
"
;
Vue
.
use
(
CreateProject
);
export
default
Vue
.
extend
({
name
:
'
projectcreate
'
,
name
:
"
projectcreate
"
,
data
()
{
return
{
currentComponent
:
'
CreateProject
'
,
currentComponent
:
"
CreateProject
"
,
currentProjectId
:
GuidUtil
.
getProjectId
(),
language
:
LanguageUtil
.
getLanguage
(),
};
Loading