24 lines
664 B
Vue
24 lines
664 B
Vue
<!-- page:จัดการรอบการสอบ สรรหา -->
|
|
<template>
|
|
<div class="toptitle text-dark col-12 row items-center">
|
|
สถิติสมัครคัดเลือก
|
|
</div>
|
|
<q-card flat bordered class="col-12 q-mt-sm q-px-md q-py-sm">
|
|
<iframe
|
|
:src="panelUrl"
|
|
style="height: 80vh; width: 100%; border: none; overflow: hidden"
|
|
></iframe>
|
|
</q-card>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import config from "@/app.config";
|
|
import { ref, onBeforeMount } from "vue";
|
|
|
|
const panelUrl = ref<string>("");
|
|
|
|
onBeforeMount(async () => {
|
|
panelUrl.value = config.qualifyExamPanel;
|
|
});
|
|
</script>
|
|
|
|
<style></style>
|