Skip to content
  • This project
    • Loading...
  • Sign in

dev / lilejia-f2mb-pro

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • lilejia-f2mb-pro
  • src
  • components
  • biz-model
  • biz-model.vue
  • joe's avatar
    备份 · c581f236
    c581f236
    joe committed 2019-08-13 18:14:31 +0800
biz-model.vue 357 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
<template>
  <van-overlay :show="show" >
      
  </van-overlay>
</template>

<script>
import Vue from "vue";
import { Overlay } from "vant";
Vue.use(Overlay);

export default {
  props: ["value"],
  data() {
    return {
      model: this.value,
      show: false
    };
  },
  methods: {},
  created() {}
};
</script>

<style lang="less" scoped>
</style>