美文网首页
基本实例

基本实例

作者: Wrestle_Mania | 来源:发表于2019-11-14 17:04 被阅读0次
cnpm i flex.css -S
  • main.js
import "flex.css";
  • Home.vue
<template lang="html">
  <div class="">
    <div flex="main:center cross:center box:mean" class="wrapper">
      <div class="box">看看我是不是居中的</div>
      <div class="box">看看我是不是居中的</div>
      <div class="box">看看我是不是居中的</div>
    </div>
  </div>
</template>

<script>
export default {
  data() {
    return {};
  },
  computed: {},
  created() {},
  mounted() {},
  methods: {},
  watch: {},
  components: {}
};
</script>

<style lang="scss" scoped>
.wrapper {
  width: 500px;
  height: 500px;
  background: #108423;
  .box {
    background: #fff;
    text-align: center;
  }
}
</style>

相关文章

网友评论

      本文标题:基本实例

      本文链接:https://www.haomeiwen.com/subject/bjorictx.html