Home > Article > Web Front-end > Reference bmob js-sdk in VUE (detailed tutorial)
Put bmob js-sdk in the static directory, and then introduce it in the form of a script tag in the index.html page, and you can use bmob js-sdk globally in vue. Let me share with you the tutorial on using bmob js-sdk in vue through this article. Friends who need it can refer to it
Introduction of BmobSDK
Place bmob js-sdk in the static directory, and then introduce it in the form of a script tag in the index.html page. You can use bmob js-sdk globally in vue
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script src="static/bmob-min.js"></script> </head> <body> <p id="app"></p> </body> </html>
Create a new js folder in the assets directory , and then create key.js to store the bmob application key
Bmob.initialize("你的Application ID", "你的REST API Key");
Introduce key.js into main.js. The introduction of bmobsdk is complete. Now you can request a piece of data to celebrate. [If you need to use bmob for a single js file in a Vue project, you need to introduce key.js, or fill in the bmob application key]
import Vue from 'vue' import App from './App' import router from './router' import './assets/js/key' //引入bmob js-sdk Vue.config.productionTip = false new Vue({ el: '#app', router, render: h => h(App) })
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future. .
Related articles:
How to solve the problem of niceScroll scroll bar misalignment in jQuery
How to implement Baidu search interface in JS
How to implement the double-color ball function in JS
How to implement the snow animation effect in jQuery
How to achieve the pull-down refresh and pull-up loading effect of the list in the WeChat applet?
How to use the digital scrolling plug-in in the WeChat mini program
How to achieve the text marquee effect in the WeChat mini program
The above is the detailed content of Reference bmob js-sdk in VUE (detailed tutorial). For more information, please follow other related articles on the PHP Chinese website!