最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Vue - global import - Stack Overflow

programmeradmin1浏览0评论

I use

import {mapFields} from "vuex-map-fields"

in every ponent.

How can I make this available in every ponent without having to import it? Is there any risk to this?

I use

import {mapFields} from "vuex-map-fields"

in every ponent.

How can I make this available in every ponent without having to import it? Is there any risk to this?

Share Improve this question asked Dec 4, 2018 at 9:27 TommyDTommyD 1,0435 gold badges19 silver badges40 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 4

if you want it globally what you have to do it's inject in the Vue instance same way that we do when we use vuex

main.js

import Vue from 'vue'
import store from './store'

new Vue( {
  el: '#app',
  store,
  render: h => h( App )
} );

then in any ponent you can console.log(this); you should be able to see your object

you can use Vue.prototype as follows..

[src/main.js]

import { mapFields } from 'vuex-map-fields';
...
Vue.prototype.$mapFields = mapFields; 

then in any ponent you can use this.$mapFields(...) function!

[ in any ponent ]

<template>
......
</template>

<script>
export default {
  puted: {
    ...this.$mapFields({
      userFirstName: 'user.firstName',
      userLastName: 'user.lastName',
    }),
  },
};
</script>

There is no risks in this code...

发布评论

评论列表(0)

  1. 暂无评论