You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
691 B
35 lines
691 B
<template>
|
|
<div>
|
|
<div class="mb-4">
|
|
<button class="btn btn--secondary" @click="goBack">Back</button>
|
|
</div>
|
|
<h1 class="text-h3 font-small text-gray-800 mb-4">Add new glossary term<hr /></h1>
|
|
<GlossaryForm />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import GlossaryForm from "../../components/glossary/GlossaryForm.vue";
|
|
import { useRouter, useRoute } from 'vue-router';
|
|
|
|
export default {
|
|
components: {
|
|
GlossaryForm,
|
|
},
|
|
setup() {
|
|
const router = useRouter();
|
|
const route = useRoute();
|
|
|
|
const goBack = () => {
|
|
router.push({
|
|
name: "GlossaryList",
|
|
query: route.query,
|
|
});
|
|
};
|
|
|
|
return {
|
|
goBack,
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|