我目前正在[<template>
<b-container >
<b-row align-h="center" class="mt-5" >
<b-col cols="12" sm="8" md="6" lg="4" style="padding-top:10px;">
<b-card header="Login" align="center" id="Card">
<b-form>
<b-form-group>
<b-form-input
type="text"
required
placeholder="User Name">
</b-form-input>
</b-form-group>
<b-form-group id="input-group-2" >
<b-form-input
type="password"
required
placeholder="Password"
></b-form-input>
</b-form-group>
<b-button variant="outline-success" type="submit">Submit</b-button>
</b-form>
</b-card>
</b-col>
</b-row>
</b-container>
</template>
<script>
export default {
data() {
return {
form: {
password: '',
name: ''
}
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style>
html{
background: url(../assets/10.jpg); /* Background image */
height: 100%;
width: 100%;
}
</style>][1]
内创建collectionView
单元格,但是我想使用默认分隔符将每个TableViewCell
分隔开,但要更改其颜色。请帮我解决一下这个。还是可以删除所有分隔线并使用自定义TableViewCell
分隔它们?