index.vue 827 Bytes
<template>
  <div class="bottom">
    <div class="sub-title">最近更新</div>

  </div>
</template>

<script>
export default {
// import引入的组件需要注入到对象中才能使用
  components: {},

  props: {},

  data() {
    // 这里存放数据
    return {}
  },
  // 监听属性 类似于data概念
  computed: {},
  // 监控data中的数据变化
  watch: {},
  // 生命周期 - 创建完成(可以访问当前this实例)
  created() {

  },
  // 生命周期 - 挂载完成(可以访问DOM元素)
  mounted() {

  },
  activated() {
  },
  // 方法集合
  methods: {}
}
</script>
<style lang='scss'>
 .bottom{
  //  background-color: #fff;
  //  border: 1px solid #d9d9d9;
  //  height: calc(100% -  588px);
  margin: 10px;
  box-sizing: border-box;
  border-top: 1px solid #d9d9d9;
 }
</style>