English
main.js/uts
是 uni-app 的入口文件。uni-app js引擎版是main.js
,而uni-app x则是main.uts
。以下一般用main.js
泛指全部。
main.js
主要作用是初始化vue
实例、定义全局组件、使用需要的插件如 i18n、vuex。
首先引入了Vue
库和App.vue
,创建了一个vue
实例,并且挂载vue
实例。
uni-app(Vue2)
uni-app(Vue3)
uni-app x(main.uts)
import Vue from 'vue'
import App from './App'
import PageHead from './components/page-head.vue' //全局引用 page-head 组件
Vue.config.productionTip = false
Vue.component('page-head', PageHead) //全局注册 page-head 组件,每个页面将可以直接使用该组件
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount() //挂载 Vue 实例
一般情况下,使用easycom比全局组件更常用,easycom按需应用更节省资源。
开发者写的代码,在应用启动时,按如下时序加载:
export function createApp() {}
外的代码、任何页面/组件的script中export default {}
外的代码export function createApp() {}
中的代码开发者需谨慎在main.js/uts、页面/组件script中export default {}
外、和onLaunch中编写代码:
export default {}
外的代码,其创建的变量在应用存活时一直占据着内存,不会跟随页面关闭而回收Use Vue.use
to quote the plug-in, use Vue.prototype
to add global variables, and use Vue.component
to register global components.
vuex
can be referenced. Because multiple files are involved, no examples are provided here, please refer to the hello uni-app
example project for details.
vue-router
cannot be used, and routing must be configured in pages.json
. If developers insist on using vue-router
, they can find conversion plug-ins in the Plug-in market.
Notice