Question: Do it in vue.js and please modify this following code Showing {{filteredTitles.length}} results for {{query}} {{title.Name}} import { computed, onMounted } from 'vue' import titles
Do it in vue.js and please modify this following code

Showing {{filteredTitles.length}} results for "{{query}}"
export default ({ props : { query : String }, setup(props) { onMounted(() => { console.log('mounted') })
const filteredTitles = computed(() => { return titles.filter(s => s.Name.toLowerCase().includes(props.query.toLowerCase())) })
return { filteredTitles } }, })
Instructions Please compress your SearchResult.vue before submission. According to the search form application, please make a link in each search'd result and when user clicks at the link, it will open a new tab following the page's url
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
