App.vue 421 B

12345678910111213141516171819202122232425
  1. <script>
  2. import config from './config'
  3. export default {
  4. onLaunch: function() {
  5. this.initApp()
  6. },
  7. methods: {
  8. // 初始化应用
  9. initApp() {
  10. // 初始化应用配置
  11. this.initConfig()
  12. },
  13. initConfig() {
  14. this.globalData = {
  15. config: config
  16. }
  17. }
  18. }
  19. }
  20. </script>
  21. <style lang="scss">
  22. @import '@/static/scss/index.scss'
  23. </style>