33 lines
796 B
Vue
33 lines
796 B
Vue
<template>
|
|
<div class="elem__tab recycle-tab import-tab">
|
|
<div class="tab__content import-modal--importing">
|
|
<span class=" loading-text">در حال ذخیره</span>
|
|
<div class="number-count text__gray">
|
|
<span>5</span>
|
|
از 12
|
|
</div>
|
|
<div class="number-line" style="width: 50%;"></div>
|
|
</div>
|
|
<div class="tab__footer">
|
|
<button
|
|
title="لغو"
|
|
@click.prevent="$emit('close-modal')"
|
|
class="popUp-tab__clear text__blue text__dark btn"
|
|
type="button"
|
|
>
|
|
لغو
|
|
</button>
|
|
<!-- <a
|
|
href="###"
|
|
class="popUp-tab__clear text__blue text__dark"
|
|
data-dismiss="modal"
|
|
>لغو</a
|
|
> -->
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {};
|
|
</script>
|