zoukankan      html  css  js  c++  java
  • 2020.08.10

            7,8,9月没有假期,期待假期的到来......

      1.slot的使用 

      <div >

        <div slot="commitment">

          <a-form-item>

            ......

          </a-form-item>

        </div>

        <div slot="round">

          <a-form-item>

            ......

          <a-form-item>

        </div>

      </div>

      

     

        options:any[]=[

        {

          label:'比赛类型',

          key:'matchType',

          type:'input',

          customRender: {

            ...

          }

        },

        {

          slot:'line'

        },

        {

          slot:'round'      

        },

        {

          slot:commitment''

        }

        ]

        2.扩展运算符的使用

        blendMatchRoundList = [...jfMatchRoundList,...ttMatchRoundList]

        3.解构赋值的使用

        <div>{{['物理赛','化学赛','英语赛'][config.type]}}</div>

        4.属性异步传递

        addPro-blend.vue

        <JfMatch  :jfMatchRoundList.sync = jfMatchRoundList></JfMatch>

        index.vue

        @PropSync ('jfMatchRoundList') jsMatchRoundList :any

        

        5.非父子组件传递属性,使用provide,inject

        addPro-blend.vue

        @inject('config') config:any

        index.vue   

        @provide('config') config:any   

  • 相关阅读:
    js计时功能
    sql缓存与WebSocket结合
    安装iis8
    WebSocket 聊天室加自制服务器
    简易web服务器
    UserControl 用户定义组件
    web.config中configSections section节 -Z
    SQL函数返回表的示例-Z
    sql with as 用法-Z
    计算机组成原理-第3章-3.1
  • 原文地址:https://www.cnblogs.com/hustxychen/p/13471705.html
Copyright © 2011-2022 走看看