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

Do it in vue.js and please modify this following code Showing {{filteredTitles.length}}

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!