1234567891011121314151617181920212223 |
- 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
|