aboutsummaryrefslogtreecommitdiff
path: root/src/components/selectable_row/selectable_row.js
blob: 9a2d57cd6da4d9f885d3de2c7c6a3b1044f335ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Checkbox from '../checkbox/checkbox.js'

const SelectableRow = {
  components: {
    Checkbox
  },
  props: ['checked'],
  data () {
  },
  computed: {
  },
  methods: {
  }
}

export default SelectableRow