I'm using the vue-multiselect library. How can I hide this triangle if the data is empty?

<multiselect v-model="user.majors" id="majorsSearch" label="name" track-by="id" placeholder="Search majors..." select-label="Select" :options="majorsBag" :multiple="true" :loading="isLoadingMajors" :internal-search="false" :clear-on-select="true" :close-on-select="true" @search-change="asyncFindMajors">
<template slot="tag" scope="props"></template>
</multiselect>