1 Star 2 Fork 0

SyncGithub/MINE-H5-UI

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
format.vue 396 Bytes
Copy Edit Raw Blame History
吕彪 authored 2021-11-09 14:56 . 更新v2.1.1
<template>
<screenshot v-bind="{start}">
<p @click="onClick">点击截图</p>
</screenshot>
</template>
<script lang="ts">
import { defineComponent, ref } from "vue";
export default defineComponent({
setup() {
const start = ref(false); // 截图状态
// 点击截图
const onClick = () => {
start.value = true;
};
return { start, onClick };
}
});
</script>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/sync-github/MINE-H5-UI.git
git@gitee.com:sync-github/MINE-H5-UI.git
sync-github
MINE-H5-UI
MINE-H5-UI
master

Search