pushStoreInfo.vue 559 Bytes
Newer Older
xd's avatar
xd committed
1
<template>
xd's avatar
xd committed
2
  <div class="main" style="display: flex;flex-direction: column;justify-content: flex-start;font-size: 14px;">
xd's avatar
xd committed
3
    <div>建设中...</div>
xd's avatar
xd committed
4 5 6 7
  </div>
</template>

<script>
xd's avatar
xd committed
8 9 10 11 12 13
import Vue from "vue";

const zlog = console.log.bind(console);



xd's avatar
xd committed
14
export default {
xd's avatar
xd committed
15 16 17 18 19 20 21 22 23 24 25 26 27 28
  name: "goodPostIndex",
  data() {
    return {
    };
  },
  created() {

  },
  mounted() {

  },
  methods: {
  }
};
xd's avatar
xd committed
29 30 31
</script>

<style scoped>
xd's avatar
xd committed
32 33 34 35
.main {
  background-color: white;
  width: 100%;
  height: 100%;
xd's avatar
xd committed
36

xd's avatar
xd committed
37 38 39
  display: flex;
  flex-direction: column;
  justify-content: start;
xd's avatar
xd committed
40 41
}
</style>