Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我要从“Handlebarjs”到“Vuejs”。我想声明一个在我的代码的几个部分中调用的方法。
至于 Handlebars.registerHelper();
请帮忙。
您可以在初始化应用程序之前对组件进行原型制作
import axios from 'axios' Vue.prototype.$http = axios new Vue(...)
axios 将在您声明的每个组件中可用
... methods: { getSomething: function() { this.$http.get('blablabla', ... ...
您也可以注册您的功能