const auditAdvancedQueryMixins = { data() { return { expand: false, searchIconType: 'down', } }, methods: { searchbtnClick() { this.expand = !this.expand if (this.expand) { this.searchIconType = 'up' } else { this.searchIconType = 'down' } }, searchedClick() { this.searchbtnClick() }, }, } export default auditAdvancedQueryMixins