index.vue
640 Bytes
<template>
<div>
<back-box>
<template slot="title">
<i class="fa fa-mail-reply-all"></i>
<span>备题组卷</span>
</template>
<template slot="btns">
</template>
</back-box>
<div class="content">
<router-link to="/examinationPaperAdd">添加答题卡</router-link>
<router-link to="/examinationPaperRecycle">已归档答题卡</router-link>
<router-link to="/examinationPaperEdit">修改答案</router-link>
</div>
</div>
</template>
<script>
export default {
name: "examinationPaper",
};
</script>
<style scoped lang="scss">
.container {
}
</style>