/tiktok-vue

TikTok Media Matrix Operation Platform: Streamlining operations with automated registration, seamless uploads, and effortless account maintenance. Enhance your workflow with intelligent automation.

Primary LanguageJavaScript

tiktok-server is the back end of this project

Deployment

one master node with multiple worker nodes

support no limit android devices if you have enough pc and android devices

get started

# vue
git clone https://github.com/niostack/tiktok-vue.git
cd tiktok-vue
npm install
# for demo
npm run dev
# for production
npm run build

for development

# install tailwindcss
npm install -D tailwindcss@latest postcss@latest autoprefixer@latest
npx tailwindcss init -p

Pagination component

<Pagination :items="devices" :pageSize="5" searchKeys="name">
    <template v-slot:buttons>
        <Button label="Button 1" />
        <Button label="Button 2" />
        <!-- 添加更多按钮 -->
    </template>
    <template v-slot:default="slotProps">
        <div v-for="item in slotProps.items" :key="item.id">
            <!-- 在这里添加你自己的内容 -->
        </div>
    </template>
</Pagination>