| 123456789101112131415161718192021222324252627282930313233 |
- <template>
- <document-cards :data="data" :hasUpload="true" :hasSlider="true" :isQuestion="true" />
- </template>
- <script>
- import DocumentCards from "@/components/DocumentCards.vue";
- import { defineComponent, ref, inject, reactive } from "vue";
- export default defineComponent({
- components: {
- DocumentCards
- },
- setup() {
- const data = ref([
- {
- background: "rgba(72, 177, 244, 0.06)",
- color: "rgb(72, 177, 244)",
- img: "/src/assets/question/1.png",
- title: "多类型题目",
- content: "支持生成单选、多选、判断、问答题等多种题目类型"
- },
- {
- background: "rgba(158, 128, 255, 0.06)",
- color: "rgb(158, 128, 255)",
- img: "/src/assets/question/2.png",
- title: "文档管理",
- content: "基于个人账号实现文档管理和权限区分你的文档他人不可见"
- }
- ]);
- return {
- data
- };
- }
- });
- </script>
|