naive-ui/demo/documentation/components/drawer/zhCN/target.demo.md
2020-09-27 00:35:51 +08:00

1.0 KiB

显示在指定区域

<n-button-group>
  <n-button @click="activate('top')"></n-button>
  <n-button @click="activate('right')"></n-button>
  <n-button @click="activate('bottom')"></n-button>
  <n-button @click="activate('left')"></n-button>
</n-button-group>
<div 
  id="drawer-target"
  style="
    position:relative;
    width: 100%;
    height: 300px;
    border: 1px solid rgba(128, 128, 128, .2);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  "
>
  显示区域
</div>
<n-drawer
  v-model:show="active"
  :width="200"
  :height="200"
  :placement="placement" 
  to="#drawer-target"
>
  <n-h1>斯通纳</n-h1>
  <n-p>《斯通纳》是美国作家约翰·威廉姆斯在 1965 年出版的小说。</n-p>
</n-drawer>
export default {
  data () {
    return {
      active: false,
      placement: 'right'
    }
  },
  methods: {
    activate (placement) {
      this.active = true
      this.placement = placement
    }
  }
}