aboutsummaryrefslogtreecommitdiffstats
path: root/settings/src/components/appList.vue
diff options
context:
space:
mode:
Diffstat (limited to 'settings/src/components/appList.vue')
-rw-r--r--settings/src/components/appList.vue7
1 files changed, 3 insertions, 4 deletions
diff --git a/settings/src/components/appList.vue b/settings/src/components/appList.vue
index 60029aa59fc..760bc8a66a1 100644
--- a/settings/src/components/appList.vue
+++ b/settings/src/components/appList.vue
@@ -64,9 +64,11 @@
<script>
import appItem from './appList/appItem';
import Multiselect from 'vue-multiselect';
+import prefix from './prefixMixin';
export default {
name: 'appList',
+ mixins: [prefix],
props: ['category', 'app', 'search'],
components: {
Multiselect,
@@ -74,7 +76,6 @@ export default {
},
data() {
return {
- groupCheckedAppsData: [],
loading: false,
scrolled: false,
};
@@ -113,9 +114,7 @@ export default {
}
},
methods: {
- prefix(prefix, content) {
- return prefix + '_' + content;
- },
+
}
}
</script>