Vue.js SDK integration

Hello,

On the website that my team is working on we’re using VueJs. We would like to know how we could implement the SDK features we need without importing React.
What we’re trying to do is create a widget that lets a user create a meeting and then let others join it.

1 Like

Hi @Naor the current version of the Web SDK does require React to power the minimization modals and accessibility elements. For now, we’re not able to provide a Web SDK without React as a dependency.

If you do not want to install React as a dependency locally, you can import all dependencies through the CDN on pages the SDK will be initialized using the following:

<script src="https://source.zoom.us/1.7.7/lib/vendor/react.min.js"></script>
<script src="https://source.zoom.us/1.7.7/lib/vendor/react-dom.min.js"></script>
<script src="https://source.zoom.us/1.7.7/lib/vendor/redux.min.js"></script>
<script src="https://source.zoom.us/1.7.7/lib/vendor/redux-thunk.min.js"></script>
<script src="https://source.zoom.us/1.7.7/lib/vendor/jquery.min.js"></script>
<script src="https://source.zoom.us/1.7.7/lib/vendor/lodash.min.js"></script>