Vue 鼠标选中文本 @mouseup 结合 window.getSelection().toString()

Vue 鼠标选中文本 @mouseup 结合 window.getSelection().toString()

<h2 @mouseup="handleMouseSelect">Vue鼠标选中文本,使用 mouseup 结合 js</h2>
methods: {
	handleMouseSelect() {
		let text = window.getSelection().toString()
		console.log(text)
	}
}
posted @ 2023-03-13 12:55  嗨^_^  阅读(34)  评论(0)    收藏  举报