@afeefa/vue-app 0.0.223 → 0.0.224
Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.224
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
<template>
|
2
2
|
<div class="listColumnHeader">
|
3
3
|
<div
|
4
|
-
:class="['content', {order}]"
|
4
|
+
:class="['content', {order, right}]"
|
5
5
|
@click="toggleSort"
|
6
6
|
>
|
7
7
|
<div
|
@@ -42,7 +42,7 @@
|
|
42
42
|
import { Component, Vue } from '@a-vue'
|
43
43
|
|
44
44
|
@Component({
|
45
|
-
props: ['text', 'icon', 'order']
|
45
|
+
props: ['text', 'icon', 'order', {right: false}]
|
46
46
|
})
|
47
47
|
export default class ListColumnHeader extends Vue {
|
48
48
|
get orderValue () {
|
@@ -110,6 +110,10 @@ export default class ListColumnHeader extends Vue {
|
|
110
110
|
user-select: none;
|
111
111
|
cursor: pointer;
|
112
112
|
}
|
113
|
+
|
114
|
+
&.right {
|
115
|
+
justify-content: end;
|
116
|
+
}
|
113
117
|
}
|
114
118
|
|
115
119
|
:deep(.v-icon) {
|