New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

ant3-ui

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ant3-ui

```js "exports": { "./lib/style.css": { "import": "./lib/style.css", "require": "./lib/style.css" } }, ```

latest
npmnpm
Version
0.3.2
Version published
Maintainers
1
Created
Source
 "exports": {
   "./lib/style.css": {
     "import": "./lib/style.css",
     "require": "./lib/style.css"
   }
 },

复制组件

<x-copy>
     <a-tag>fasdfad发顺丰 </a-tag>
     <template #btn> 复制一下 </template>
</x-copy>

table组件

<template>
  <div class="user_list con">
    <x-table
      :dealResponse="dealResponse"
      :req="accountList"
      :showPage="false"
      :filterDict="searchDict"
    >
      <template v-slot:myTable="table">
        <a-table
          :data-source="table.data"
          :pagination="false"
          :columns="coloumns"
          :scroll="{
            y: `${table.tableH}px`,
          }"
        >
          <template #bodyCell="{ column, record }">
            <template v-if="column.key === 'action'">
              <a-space>
                <a-button type="primary">查看余额</a-button>
                <a-button >交易明细</a-button>
              </a-space>
            </template>
          </template>
        </a-table>
      </template>
    </x-table>
  </div>
</template>
<script setup lang="ts">
import { accountList } from "@/api";
import { coloumns, searchDict } from "./dict";
const dealResponse = (res: any) => {
  if (res.success) {
    return {
      list: res.data,
    };
  }
};
</script>
<style lang="less" scoped>
</style>

FAQs

Package last updated on 11 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts