IndexPage.vue 1.26 KB
Newer Older
hucy's avatar
hucy committed
1 2 3 4 5 6 7 8 9 10 11 12
<!--
 * 一些js方法
 -->
<script lang="ts">
export default {
  name: 'PAGE6',
};
</script>
<script setup lang="ts">
// import ArrayOutOfOrder from './element/ArrayOutOfOrder.vue';
// import CanvasStaticRoute from './element/CanvasStaticRoute.vue';
// import MorphBox from './element/MorphBox.vue';
hucy's avatar
hucy committed
13
// import CarouselWarp from './element/CarouselWarp.vue';
hucy's avatar
hucy committed
14
// import DataResponsive from './element/DataResponsive.vue';
hucy's avatar
hucy committed
15
// import CanvasStudy from './element/CanvasStudy.vue';
hucy's avatar
hucy committed
16 17
// import CanvasStudy from './element/CanvasCurve.vue';

hucy's avatar
hucy committed
18 19 20
// import SubComponents from './element/AsyncAwait.vue';
// import SubComponents from './element/RequestAnimationFrame.vue';

hucy's avatar
hucy committed
21
// import SubComponents from './element/equipment/IndexPage.vue';
hucy's avatar
hucy committed
22 23
// import SubComponents from './element/canvas-router-map/CanvasRouterMap.vue'; // canvas 绘制动态路径
import SubComponents from './element/table-study/TableStudy.vue'; // 表格学习
hucy's avatar
hucy committed
24 25 26 27 28 29
</script>
<template>
  <div class="page6 container-height">
    <!-- <array-out-of-order /> -->
    <!-- <canvas-static-route /> -->
    <!-- <morph-box /> -->
hucy's avatar
hucy committed
30
    <!-- <carousel-warp /> -->
hucy's avatar
hucy committed
31
    <!-- <data-responsive /> -->
hucy's avatar
hucy committed
32 33 34
    <!-- <canvas-study /> -->

    <sub-components />
hucy's avatar
hucy committed
35 36 37 38 39 40 41 42
  </div>
</template>

<style lang="scss" scoped>
.page6 {
  padding: $padding-md;
}
</style>