IndexPage.vue 812 Bytes
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 15
// import DataResponsive from './element/DataResponsive.vue';
import CanvasStudy from './element/CanvasStudy.vue';
hucy's avatar
hucy committed
16 17 18 19 20 21
</script>
<template>
  <div class="page6 container-height">
    <!-- <array-out-of-order /> -->
    <!-- <canvas-static-route /> -->
    <!-- <morph-box /> -->
hucy's avatar
hucy committed
22
    <!-- <carousel-warp /> -->
hucy's avatar
hucy committed
23 24
    <!-- <data-responsive /> -->
    <canvas-study />
hucy's avatar
hucy committed
25 26 27 28 29 30 31 32
  </div>
</template>

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