Blame view

ant-design-vue-jeecg/src/views/account/settings/Notification.vue 229 Bytes
肖超群 authored
1
2
3
4
5
6
7
8
9
10
<template>
  <a-list
    itemLayout="horizontal"
    :dataSource="data"
  >

  </a-list>
</template>

<script>
肖超群 authored
11
12
13
14
export default {
  data() {
    return {
      data: []
肖超群 authored
15
    }
肖超群 authored
16
17
18
  },
  methods: {}
}
肖超群 authored
19
20
21
22
23
</script>

<style scoped>

</style>