Skip to content
Snippets Groups Projects

Sprint/2021 21

Merged Petar Hristov requested to merge Sprint/2021-21 into master
12 files
+ 2579
1699
Compare changes
  • Side-by-side
  • Inline
Files
12
+ 10
10
<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