vue-prevent-unload
made with
Vuejs
简介及使用教程
vue-prevent-unload是一个基于Vue.js组件,能够防止页面离开/重新加载。
安装
Npm
npm i vue-prevent-unload
Yarn
yarn add vue-prevent-unload
使用
<template>
<PreventUnload :when="hasChanges"/>
</template>
<script>
import PreventUnload from 'vue-prevent-unload';
export default {
data() {
return {
hasChanges: true,
}
},
components: {
PreventUnload,
}
}
</script>
作者
probil
相关项目