no-title.vue 331 B

1234567891011121314
  1. <template>
  2. <el-button type="primary" style="margin-left: 16px" @click="drawer = true">
  3. open
  4. </el-button>
  5. <el-drawer v-model="drawer" title="I am the title" :with-header="false">
  6. <span>Hi there!</span>
  7. </el-drawer>
  8. </template>
  9. <script lang="ts" setup>
  10. import { ref } from 'vue'
  11. const drawer = ref(false)
  12. </script>