mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
8 lines
158 B
Vue
8 lines
158 B
Vue
|
<script lang="ts" setup>
|
||
|
const { filteredProjects } = storeToRefs(useData())
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<ProjectGrid :projects="filteredProjects" />
|
||
|
</template>
|