Skip to content
This repository was archived by the owner on Apr 16, 2021. It is now read-only.

Latest commit

 

History

History
23 lines (22 loc) · 453 Bytes

mediumCode.md

File metadata and controls

23 lines (22 loc) · 453 Bytes
<template>
  <ou-button @click='openMediumPanel'>Open Panel</ou-button>
  <ou-panel title='Panel' size='medium' v-model='mediumPanelVisiblity'>
    <span class='ms-font-m'>Content goes here</span>
  </ou-panel>
</template>
<script>
  export default {
    data() {
      return {
        mediumPanelVisiblity: false
      };
    },

    methods: {
      openMediumPanel() {
        this.defaultPanelVisiblity = true;
      }
    }
  };
</script>