vue2 Where should public methods be written?
滿天的星座2017-05-19 10:23:22
Write a util.js and write the methods here. Be careful to expose it as a module. When using it, import it, and then you can use the methods inside
为情所困2017-05-19 10:23:22
Write a separate JS file, and then expose the method. The VUE page refers to your JS file to call the exposed method
迷茫2017-05-19 10:23:22
Use vueX? Just write it in actions, so that it can be easily called in the component. If you write additional js, it will be troublesome to import every time