使用 .sync 修饰符(Vue 特有语法)

父组件

<template>
  <child-component :showLock.sync="parentShowLock" />
</template>

子组件

<script>
export default {
  props: ['showLock'],
  methods: {
    changeLock() {
      this.$emit('update:showLock', false); // 固定事件格式
    }
  }
}
</script>