docs.vue 621 Bytes
Newer Older
wanli's avatar
wanli committed
1 2
<template>
  <div class="container">
3 4 5 6 7 8 9 10
    <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
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
  </div>
</template>
<script>
export default {
  name: "Document",
  components: {},
  data() {
    return {};
  },
  computed: {},
  methods: {},
};
</script>
<style lang="scss" scoped>
.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  & > img {
    display: block;
  }
}
36
</style>