Skip to content
Snippets Groups Projects

Draft: Resolve "Implement shared secret mechanism"

Closed Hangzhi Yu requested to merge 2-implement-shared-secret-mechanism into main
Files
16
<template>
<div class="d-flex justify-center align-center flex-column text-center">
<h1 class="text-h2" :v-text="appName"></h1>
<h1 class="text-h2">maka</h1>
</div>
</template>
<script>
import gqlAppName from "./appName.graphql";
export default {
name: "Empty",
data() {
return {
appName: null,
};
},
apollo: {
appName: gqlAppName,
},
};
</script>
Loading