import { Grid, GridItem, Icon, Image, Loading } from 'vant' import { defineComponent, PropType } from 'vue' import styles from './index.module.less' import IconXin from '../images/icon-xin.png' export default defineComponent({ name: 'TheMusicGrid', props: { list: { type: Array as any, default: () => [] } }, emits: ['goto'], setup(props, { emit }) { return () => (