dl_site_nuxt/store/index.js
hejin 0551d7062f 接口对接:
首页:
          1. 首页轮播图
          2. 首页公司简介
          3. 热门产品
          4. 普通产品
      新闻:
          1.分类
     footer接口
2025-07-12 19:41:58 +08:00

21 lines
326 B
JavaScript

export const state = () => ({
locales: ['en', 'zh'],
locale: 'en',
footerInfo: {}
})
export const mutations = {
SET_LANG (state, locale) {
if (state.locales.includes(locale)) {
state.locale = locale
}
},
SET_FOOTER_INFO (state, info) {
state.footerInfo = info
}
}
export const actions = {
}