vue3-flex
v0.0.15
Published
## Usage: ```html <template> <flex align-items="center" justify-content="center" > <h1> Hello world! </h1> </flex> </template>
Downloads
69
Readme
Vue 3 flexbox component
Usage:
<template>
<flex
align-items="center"
justify-content="center"
>
<h1>
Hello world!
</h1>
</flex>
</template>
<script lang="ts" setup>
import { Flex } from 'vue3-flex';
</script>
`