UNPKG

mand-mobile

Version:

A Vue.js 2.0 Mobile UI Toolkit

45 lines (33 loc) 826 B
--- title: WaterMark preview: https://didi.github.io/mand-mobile/examples/#/water-mark --- Container with watermark background ### 引入 ```javascript import { WaterMark } from 'mand-mobile' Vue.component(WaterMark.name, WaterMark) ``` ### 代码演示 <!-- DEMO --> ### API #### WaterMark Props |Props | Description | Type | Default | Note | |----|-----|------|------ |------| |content|-|String|-|complex content using `scoped slot`| |spacing|-|String|`20vw`|-| |repeat-x|-|Boolean|`true`|-| |repeat-y|-|Boolean|`true`|-| |rotate|-|String|`-30`|-| |opacity|-|String|`0.1`|-| #### WaterMark Slots ##### default Default slot of content ##### watermark scoped slot of watermark content ```html <div slot="watermark" slot-scope="{ coord }"> <!-- coord.row row index --> <!-- coord.col column index --> </div> ```