设计一个H5编辑器的数据模型和核心功能

js 复制代码
const store = {
    page: {
        title: '标题',
        setting: {}, // 其他扩展信息的语言,微信分享的配置,其他
        props: {}, // 当前页面的属性设置, 背景
        components: [
            // 有序,数组
            {
                id: 'x1',
                name: "文本1",
                tag: 'text', // type
                style: { color: 'red', fontSize: '16px' },
                attr: {}, // 其他属性
                text: '文本1',
            },
            {
                id: 'x2',
                name: "文本2",
                tag: 'text', // type
                style: { color: 'red', fontSize: '16px' },
                attr: {}, // 其他属性
                text: '文本2',
            }
        ]
    },
    activeComponentsId:'x3'  // 记录选中的id vuex
}

const getters = {
    layers() {
        store.page.components.map(c => {
            return {
                id: c.id,
                name: c.name
            }
        })
    }
}

总结

组件有序结构 参考vnode 格式
通过id对应选中的组件,即可使用Vuex同步数据
图层使用Vuex getter,而非对立的数据
相关推荐
轻口味1 小时前
命名空间与模块化概述
开发语言·前端·javascript
前端小小王2 小时前
React Hooks
前端·javascript·react.js
迷途小码农零零发2 小时前
react中使用ResizeObserver来观察元素的size变化
前端·javascript·react.js
娃哈哈哈哈呀2 小时前
vue中的css深度选择器v-deep 配合!important
前端·css·vue.js
旭东怪3 小时前
EasyPoi 使用$fe:模板语法生成Word动态行
java·前端·word
ekskef_sef4 小时前
32岁前端干了8年,是继续做前端开发,还是转其它工作
前端
sunshine6415 小时前
【CSS】实现tag选中对钩样式
前端·css·css3
真滴book理喻5 小时前
Vue(四)
前端·javascript·vue.js
蜜獾云5 小时前
npm淘宝镜像
前端·npm·node.js