1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <div id="app">
- <SrpElement :config="config" :type="type"></SrpElement>
- </div>
- </template>
- <script>
- import {SrpElement} from './../packages/index'
- export default {
- name: 'App',
- components: {
- SrpElement
- },
- data () {
- return {
- config:{
- 'text': '单行文字',
- 'fillType': 'none', //背景填充类型
- 'colorPercent': 0, //背景色透明度
- 'imgPercent': 0, //背景图片透明度
- 'backgroundColor': '#fff',//背景色填充
- 'color': '#fff', //边框颜色
- 'src': '', //背景图片填充
- 'borderType': 'none', //边框类型
- 'borderSize': '1',//边框大小
- 'eleStyle': {}
- },
- type: 'label'
- }
- },
- }
- </script>
- <style lang="scss">
- </style>
|