changes
This commit is contained in:
@@ -12,13 +12,19 @@
|
||||
class="mr-1"
|
||||
@click="previousYear()"
|
||||
>
|
||||
<SvgIcon v-bind="{ name: 'doubleleft.svg', type: 'gray', size: 18 }"></SvgIcon>
|
||||
<Icon
|
||||
name="ic:baseline-keyboard-double-arrow-left"
|
||||
:size="18"
|
||||
/>
|
||||
</a>
|
||||
<a
|
||||
@click="previousMonth()"
|
||||
v-if="type === 'days'"
|
||||
>
|
||||
<SvgIcon v-bind="{ name: 'left1.svg', type: 'gray', size: 18 }"></SvgIcon>
|
||||
<Icon
|
||||
name="ic:baseline-keyboard-arrow-left"
|
||||
:size="18"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
<div class="control is-expanded has-text-centered">
|
||||
@@ -43,10 +49,16 @@
|
||||
@click="nextMonth()"
|
||||
v-if="type === 'days'"
|
||||
>
|
||||
<SvgIcon v-bind="{ name: 'right.svg', type: 'gray', size: 18 }"></SvgIcon>
|
||||
<Icon
|
||||
name="ic:baseline-keyboard-arrow-right"
|
||||
:size="18"
|
||||
/>
|
||||
</a>
|
||||
<a @click="nextYear()">
|
||||
<SvgIcon v-bind="{ name: 'doubleright.svg', type: 'gray', size: 18 }"></SvgIcon>
|
||||
<Icon
|
||||
name="ic:baseline-keyboard-double-arrow-right"
|
||||
:size="18"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@@ -84,7 +96,10 @@
|
||||
:class="`pt-1 ${j === m.event.length - 1 ? '' : 'border-bottom'}`"
|
||||
v-for="(h, j) in m.event"
|
||||
>
|
||||
<SvgIcon v-bind="{ name: h.icon, type: h.color, size: 16 }"></SvgIcon>
|
||||
<Icon
|
||||
:name="h.icon"
|
||||
:size="18"
|
||||
/>
|
||||
<a
|
||||
class="ml-3"
|
||||
@click="openEvent(h)"
|
||||
|
||||
Reference in New Issue
Block a user