内容简介:A simple and reusable flexbox component forThis package is available on NPM, and you can install it with
svelte-flex
A simple and reusable flexbox component for Svelte .
- Sane defaults.
- Simple API.
- Reactive props.
- Minimal size.
Installation
This package is available on NPM, and you can install it with npm
or yarn
:
npm install svelte-flex yarn add svelte-flex
Usage
Import the Flex
component and use it in your Svelte project.
<script> import Flex from 'svelte-flex'; </script> <Flex> <div>Flexbox child!</div> <div>Flexbox child!</div> <div>Flexbox child!</div> </Flex>
Props
All props are optional (as they all have default values).
Prop | Possible Values | Default Value |
---|---|---|
direction |
'row' | 'column' |
'row' |
align |
'start' | 'center' | 'end' | 'stretch' |
'center' |
justify |
'start' | 'center' | 'end' | 'around' | 'between' | 'evenly' |
'center' |
reverse |
true | false |
false |
Check out the test suite if you're unsure what CSS styles are applied by these props.
The props are reactive, meaning that if they are dynamically updated, the component will update in response.
Contributing
Feel free to file an issue or open a pull request. Ensure that you add tests for any new functionality.
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
大数据系统构建
Nathan Marz、James Warren / 马延辉、向磊、魏东琦 / 机械工业出版社 / 2017-1 / 79.00
随着社交网络、网络分析和智能型电子商务的兴起,传统的数据库系统显然已无法满足海量数据的管理需求。 作为一种新的处理模式,大数据系统应运而生,它使用多台机器并行工作,能够对海量数据进行存储、处理、分析,进而帮助用户从中提取对优化流程、实现高增长率的有用信息,做更为精准有效的决策。 但不可忽略的是,它也引入了大多数开发者并不熟悉的、困扰传统架构的复杂性问题。 本书将教你充分利用集群硬件优势的La......一起来看看 《大数据系统构建》 这本书的介绍吧!