|
- <template>
- <u-cell :title="title" isLink :border="false" @click="click"></u-cell>
- </template>
-
- <script>
- export default {
- name: "radio",
- props: {
- title: {
- default: "",
- type: String
- },
- },
- methods:{
- click(){
- this.$emit("click")
- }
- }
- }
- </script>
-
- <style scoped>
- .u-cell {
- background: #fff;
- border-radius: 20rpx;
- }
- </style>
|