美文网首页Vue
安装ant并使用

安装ant并使用

作者: 这真的是一个帅气的名字 | 来源:发表于2022-04-05 16:41 被阅读0次

    文档:https://antdv.com/docs/vue/introduce-cn/

    项目中运行:npm install ant-design-vue --save

    全部引用

    main.js中

    // The Vue build version to load with the `import` command
    // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
    import Vue from 'vue'
    import App from './App'
    import router from './router'
    /*新增ant*/
    import ant from 'ant-design-vue'
    import 'ant-design-vue/dist/antd.css'
    Vue.use(ant)
    /*新增结束*/
    Vue.config.productionTip = false
        /* eslint-disable no-new */
    new Vue({
        el: '#app',
        router,
        components: { App },
        template: '<App/>'
    })
    

    页面中使用

    <template>
      <div class="home">
        <div class="title">这是一个{{ msg }}页面</div>
        <a-table :columns="columns" :data-source="data">
          <a slot="name" slot-scope="text">{{ text }}</a>
          <span slot="customTitle"><a-icon type="smile-o" /> Name</span>
          <span slot="tags" slot-scope="tags">
            <a-tag
              v-for="tag in tags"
              :key="tag"
              :color="
                tag === 'loser' ? 'volcano' : tag.length > 5 ? 'geekblue' : 'green'
              "
            >
              {{ tag.toUpperCase() }}
            </a-tag>
          </span>
          <span slot="action" slot-scope="text, record">
            <a @click="getData(record)">Invite 一 {{ record.name }}</a>
            <a-divider type="vertical" />
            <a>Delete</a>
            <a-divider type="vertical" />
            <a class="ant-dropdown-link"> More actions <a-icon type="down" /> </a>
          </span>
        </a-table>
      </div>
    </template>
    <script>
    const columns = [
      {
        dataIndex: 'name',
        key: 'name',
        slots: { title: 'customTitle' },
        scopedSlots: { customRender: 'name' },
      },
      {
        title: 'Age',
        dataIndex: 'age',
        key: 'age',
      },
      {
        title: 'Address',
        dataIndex: 'address',
        key: 'address',
      },
      {
        title: 'Tags',
        key: 'tags',
        dataIndex: 'tags',
        scopedSlots: { customRender: 'tags' },
      },
      {
        title: 'Action',
        key: 'action',
        scopedSlots: { customRender: 'action' },
      },
    ];
    
    const data = [
      {
        key: '1',
        name: 'John Brown',
        age: 32,
        address: 'New York No. 1 Lake Park',
        tags: ['nice', 'developer'],
      },
      {
        key: '2',
        name: 'Jim Green',
        age: 42,
        address: 'London No. 1 Lake Park',
        tags: ['loser'],
      },
      {
        key: '3',
        name: 'Joe Black',
        age: 32,
        address: 'Sidney No. 1 Lake Park',
        tags: ['cool', 'teacher'],
      },
    ];
    
    export default {
      name: "Home",
      data() {
        return {
            data,
          columns,
          msg: "data-home",
        };
      },
      methods:{
           getData:function(record){
               console.log(record)
           }
      }
    };
    </script>
    <style lang="less">
    .home {
    //   background-color: aqua;
      .title {
        font-size: 40px;
        letter-spacing: 2px;
      }
    }
    </style>
    
    
    image.png

    相关文章

      网友评论

        本文标题:安装ant并使用

        本文链接:https://www.haomeiwen.com/subject/yxwksrtx.html