<template>
|
<PageWrapper title="点内外部触发事件">
|
<ClickOutSide @click-outside="handleClickOutside" class="flex justify-center">
|
<div @click="innerClick" class="demo-box">
|
{{ text }}
|
</div>
|
</ClickOutSide>
|
</PageWrapper>
|
</template>
|
<script lang="ts">
|
import { defineComponent, ref } from 'vue';
|
import { ClickOutSide } from '/@/components/ClickOutSide';
|
import { PageWrapper } from '/@/components/Page';
|
|
export default defineComponent({
|
components: { ClickOutSide, PageWrapper },
|
setup() {
|
const text = ref('Click');
|
function handleClickOutside() {
|
text.value = 'Click Out Side';
|
}
|
|
function innerClick() {
|
text.value = 'Click Inner';
|
}
|
return { innerClick, handleClickOutside, text };
|
},
|
});
|
</script>
|
|
<style lang="less" scoped>
|
.demo-box {
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
width: 100%;
|
height: 300px;
|
border-radius: 10px;
|
background-color: #408ede;
|
color: #fff;
|
font-size: 24px;
|
}
|
</style>
|