offsetting.vue 314 B

123456789101112131415
  1. <template>
  2. <el-button plain @click="open"> Notification with offset </el-button>
  3. </template>
  4. <script lang="ts" setup>
  5. import { ElNotification } from 'element-plus'
  6. const open = () => {
  7. ElNotification.success({
  8. title: 'Success',
  9. message: 'This is a success message',
  10. offset: 100,
  11. })
  12. }
  13. </script>