feat: sendBeacon离开页面埋点保证送达方案
parent
8655e74cb3
commit
fe48c63481
@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<div
|
||||
class="markdown-body"
|
||||
v-html="htmlStr"
|
||||
></div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref } from 'vue';
|
||||
import { marked } from 'marked';
|
||||
import { getMarkdownContent } from '@/utils/tools';
|
||||
|
||||
const htmlStr = ref('');
|
||||
|
||||
getMarkdownContent('./md/sendBeacon.md').then((res) => {
|
||||
htmlStr.value = marked(res);
|
||||
});
|
||||
</script>
|
||||
Loading…
Reference in New Issue