27 lines
781 B
JavaScript
27 lines
781 B
JavaScript
import { f as formatAppLog } from "../../../uni-app.es.js";
|
|
import { openBlock, createElementBlock, createElementVNode } from "vue";
|
|
const _sfc_main = {
|
|
__name: "audio",
|
|
setup(__props) {
|
|
RtcEngine.create("__UNI__08B31BC").then((engine) => {
|
|
formatAppLog("log", "at pages/news/audio-video/audio.nvue:11", "init success");
|
|
});
|
|
return (_ctx, _cache) => {
|
|
return openBlock(), createElementBlock("scroll-view", {
|
|
scrollY: true,
|
|
showScrollbar: true,
|
|
enableBackToTop: true,
|
|
bubble: "true",
|
|
style: { flexDirection: "column" }
|
|
}, [
|
|
createElementVNode("view", { class: "container" }, [
|
|
createElementVNode("u-text", null, "1111")
|
|
])
|
|
]);
|
|
};
|
|
}
|
|
};
|
|
export {
|
|
_sfc_main as default
|
|
};
|