Blame view

src/views/home/index.vue 319 Bytes
任超 committed
1
<template>
任超 committed
2
  <screencontent />
任超 committed
3 4 5
</template>

<script>
任超 committed
6
import screencontent from '@/views/dataView/screencontent'
任超 committed
7
export default {
任超 committed
8
  name: "home",
任超 committed
9 10 11
  components: {
    screencontent
  },
任超 committed
12
  data () {
任超 committed
13
    return {
任超 committed
14 15 16 17
    }
  },
  methods: {
  }
任超 committed
18
}
任超 committed
19 20
</script>
<style scoped lang="scss">
任超 committed
21
@import "../dataView/index.scss";
任超 committed
22
</style>