14 lines
440 B
Vue
14 lines
440 B
Vue
|
<!-- 页面描述 -->
|
||
|
<template>
|
||
|
<view class="container">1111</view>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref } from 'vue'
|
||
|
// import RtcEngine from '../../../lib/commonjs/components/Agora-RTC-JS/index';
|
||
|
// const RtcEngine = require('../../../lib/commonjs/components/Agora-RTC-JS/index.js')["default"]
|
||
|
RtcEngine.create('__UNI__08B31BC').then((engine) => {
|
||
|
console.log('init success');
|
||
|
});
|
||
|
</script>
|
||
|
<style scoped lang="scss"></style>
|