This commit is contained in:
@@ -4,7 +4,17 @@
|
||||
<v-form ref="form">
|
||||
<v-row>
|
||||
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
||||
<v-col>
|
||||
<v-col cols="12">
|
||||
<div class="text-h4 text-md-h2 mb-2">{{ $ay.t("Welcome") }}</div>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<v-btn @click="helpEvaluate()" class="my-8 mr-4">{{
|
||||
$ay.t("EvaluationGuide")
|
||||
}}</v-btn>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<div class="text-h5 mb-2">{{ $ay.t("GenerateSampleData") }}</div>
|
||||
|
||||
Evaluation guide in manual Generate sample data Purchase licenses
|
||||
Contact support
|
||||
</v-col>
|
||||
@@ -63,7 +73,14 @@ export default {
|
||||
};
|
||||
},
|
||||
|
||||
methods: {}
|
||||
methods: {
|
||||
helpEvaluate() {
|
||||
window.$gz.eventBus.$emit("menu-click", {
|
||||
key: "app:help",
|
||||
data: "ay-evaluate"
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/////////////////////////////
|
||||
@@ -122,7 +139,11 @@ function initForm(vm) {
|
||||
// Ensures UI translated text is available
|
||||
//
|
||||
function fetchTranslatedText(vm) {
|
||||
return window.$gz.translation.cacheTranslations(["Welcome"]);
|
||||
return window.$gz.translation.cacheTranslations([
|
||||
"Welcome",
|
||||
"GenerateSampleData",
|
||||
"EvaluationGuide"
|
||||
]);
|
||||
}
|
||||
|
||||
// //////////////////////
|
||||
|
||||
Reference in New Issue
Block a user