• This project
    • Loading...
  • Sign in

Hooke / tswj

Itomix
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • tswj
  • src
  • components
  • MuiVideo
  • banner.vue
  • hookehuyr's avatar
    综合视频组件测试 · 62ed4df6
    62ed4df6
    hookehuyr authored 2022-05-23 16:00:21 +0800
banner.vue 364 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<template>
  <div 
    @click="goToDetail(item, $router)" 
    class="banner">
    {{ item.kg_name }} | {{ item.localism_type }}
  </div>
</template>

<script setup>
import { goToDetail } from './methods'
const props = defineProps({
  item: Object,
});
</script>

<style lang="less" scoped>
  .banner {
    color: #999999; 
    padding: 0.5rem 1rem
  }
</style>