- 192.xxx.xxx.xxx:9090/xxx/xxx/xxx… 找到网址中是否有arrType文件后缀
const test = computed(() => {
const arrType = ['.pdf','.html','.jpg','.jpeg','.png','.txt','.docx','.xlsx']
const type=arrType.find(item=>props.value.includes(item))
return type ? true : false
});