例如以下代码:
<div id="app">
<wv></wv>
</div>
<script>
if (inCrm()) {
Vue.component("wv", {
template: `<iframe></iframe>`
})
} else if (inElectron()) {
Vue.component("wv", {
template: `<webview></webview>`
})
}
new Vue({el: "#app"})
</script>
我希望在chrome中调试并运行电子,如何在运行时区分这两者?