Files
log-lottery/src/layout/Footer/index.vue
ex_zhangwenlei@exiot.cmcc 1d3e9983f6 fix: eslint and lint fixed
2024-11-22 16:41:14 +08:00

28 lines
525 B
Vue

<script setup lang="ts">
import { footerList } from './config'
function skip(url: string) {
window.open(url)
}
</script>
<template>
<div class="footer-container">
<ul class="flex justify-center">
<li
v-for="item in footerList.data"
:key="item.id"
class="flex items-center gap-1 cursor-pointer"
@click="skip(item.url)"
>
<svg-icon :name="item.icon" />
<p>{{ item.name }}</p>
</li>
</ul>
</div>
</template>
<style scoped lang="scss">
</style>