mirror of
https://github.com/KevinMidboe/vue-js-modal.git
synced 2025-10-29 18:00:20 +00:00
34 lines
677 B
Vue
34 lines
677 B
Vue
<template>
|
|
<table>
|
|
<tr>
|
|
<td style="width: 20%">Modes:</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>Simple</b></td>
|
|
<td>Yet another boring modal :)</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>Adaptive</b></td>
|
|
<td>Tries to adjust to the page size</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>Resizable</b></td>
|
|
<td>
|
|
Has a small arrow on the bottom-right corner (customizable) that you can drag to change the size of the modal
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>Draggable</b></td>
|
|
<td>
|
|
Allows to drag modal on the screen
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'ModesTable'
|
|
}
|
|
</script>
|