target.vue 348 B

123456789101112131415
  1. <template>
  2. <div class="affix-container">
  3. <el-affix target=".affix-container" :offset="80">
  4. <el-button type="primary">Target container</el-button>
  5. </el-affix>
  6. </div>
  7. </template>
  8. <style scoped>
  9. .affix-container {
  10. text-align: center;
  11. height: 400px;
  12. border-radius: 4px;
  13. background: var(--el-color-primary-light-9);
  14. }
  15. </style>