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

javascript - Vuejs: where should I place some common js util in a vue-router SPA? - Stack Overflow

programmeradmin1浏览0评论

In my Vuejs project, I have some mon js functions which would be used through multiple ponents:

My code structure is as below, which was introduced in .html:

├── index.html
├── main.js
├── ponents
│   ├── App.vue
│   └── ...
└── vuex
    ├── store.js     # exports the store (with initial state and mutations)
    └── actions.js   # exports all actions

some_ponent.vue

<template>
// The page content
</template>

<script>
export default {
    attached: function() {
        if(!isLoggedIn) {
            $this.router.go('/signin');
        }
    }
}
</script>

In this case, I want to make a function loginRequired which would be called in several ponents.

So how should I organize the code?

In my Vuejs project, I have some mon js functions which would be used through multiple ponents:

My code structure is as below, which was introduced in http://vuejs.github.io/vuex/en/structure.html:

├── index.html
├── main.js
├── ponents
│   ├── App.vue
│   └── ...
└── vuex
    ├── store.js     # exports the store (with initial state and mutations)
    └── actions.js   # exports all actions

some_ponent.vue

<template>
// The page content
</template>

<script>
export default {
    attached: function() {
        if(!isLoggedIn) {
            $this.router.go('/signin');
        }
    }
}
</script>

In this case, I want to make a function loginRequired which would be called in several ponents.

So how should I organize the code?

Share Improve this question edited Jun 15, 2016 at 8:08 Thomas Ayoub 29.5k16 gold badges97 silver badges147 bronze badges asked Apr 18, 2016 at 23:42 Alfred HuangAlfred Huang 18.3k33 gold badges124 silver badges194 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

Here is my choice

├── index.html
└── src
    ├── main.js
    ├── config.js        # Here I define global constants like a base url for vue-resource
    ├── api              # here is all the http calls using Vue.resource
    │   ├── index.js
    │   └── resource.js  # here I define interceptors, for errors log, auth, etc
    ├── ponents
    │   ├── utils        # Here I define mon functions for ponents
    │   ├── App.vue
    │   └── ...
    └── vuex
        ├── store.js     # exports the store (with initial state and mutations)
        └── actions.js   # exports all actions

So what you want, according to my file structure, should be in the src/ponents/utils folder, at least that it uses some http calls, in that case, it would be part of the src/api api folder. In this case, the routes are in the main.js file, some people prefer to have a dedicated file routes.js in the src folder, it's up to you

发布评论

评论列表(0)

  1. 暂无评论