Files
Code-Create/src/pages/about-us/index.vue

42 lines
769 B
Vue
Raw Normal View History

2026-05-14 14:55:42 +08:00
<script setup lang="ts">
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
2026-05-14 15:31:34 +08:00
import Ecosystem from './ecosystem.vue'
import Title from './title.vue'
2026-05-14 14:55:42 +08:00
//const props = defineProps({
//})
//const emit = defineEmits([
//])
let data = reactive({
})
onMounted(()=>{
})
onUnmounted(()=>{
})
defineExpose({})
const {} = toRefs(data);
</script>
<template>
2026-05-14 15:31:34 +08:00
<div class="about-us">
<div class="bg">
<img src="https://code-create.com.hk/wp-content/uploads/2022/12/about_banner-1.jpg" alt="">
</div>
<Title />
<Ecosystem />
2026-05-14 14:55:42 +08:00
</div>
</template>
<style lang="less" scoped>
2026-05-14 15:31:34 +08:00
.about-us{
2026-05-14 14:55:42 +08:00
width: 100%;
height: 100%;
position: relative;
2026-05-14 15:31:34 +08:00
> .bg{
width: 100%;
position: fixed;
z-index: -1;
top: 0;
> img{
width: 100%;
}
}
2026-05-14 14:55:42 +08:00
}
</style>