docs.vue 600 Bytes
Newer Older
wanli's avatar
wanli committed
1 2
<template>
  <div class="container">
wanli's avatar
wanli committed
3
    <iframe src="https://www.yuque.com/books/share/07c6dc3d-5343-45dd-a7d2-fd5ccaa05825" height="100%" width="100%" name="demo" scrolling="auto" frameborder="0"></iframe>
wanli's avatar
wanli committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
  </div>
</template>
<script>

export default {
  name: "Document",
  components: {},
  data() {
    return {};
  },
  computed: {},
  methods: {},
  beforeMount() {},
};
</script>
<style lang="scss" scoped>
.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  & > img {
    display: block;
  }
}
</style>