How to use the kpc-vue/components/utils.range function in kpc-vue

To help you get started, we’ve selected a few kpc-vue examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ksc-fe / kpc / components / split / demos / complex / index.vue View on Github external
data() {
        return {
            data: range(0, 10).map(item => {
                return {
                    name: 'name ' + item,
                    ip: '127.0.0.' + item
                };
            }),
            tab: 'detail',
            size: '0px',
            selectedData: {},
            checkedKeys: [],
        }
    },
    methods: {