# 【组件】 分割线组件
# 描述
jovi 主页 分割线组件
# 使用效果
# 使用方法
在.ux
文件中引入组件
<import
name="component-line"
src="vivo-cards-suits/components/jovi/component-line/index.ux"
></import>
1
2
3
4
2
3
4
# 示例
<template>
<div class="card">
<component-line></component-line>
</div>
</template>
<script>
export default {
data() {
return {};
}
};
</script>
<style lang="less">
.card {
width: 100%;
flex-direction: column;
}
</style>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20