ux-types

0.1.1 • Public • Published

ux-types

types for ux lang

useage

import { defineComponent } from 'ux-types';

export default defineComponent({
  props:{
    msg:"hello world"
  },
  private:{
    firstname:'aa',
    lastname:'bb'
  },
  computed:{
    fullname(){
      return this.firstname + this.lastname
    }
  },
  logname(){
    console.log(this.fullname)
  }
})

/ux-types/

    Package Sidebar

    Install

    npm i ux-types

    Weekly Downloads

    11

    Version

    0.1.1

    License

    MIT

    Unpacked Size

    230 kB

    Total Files

    69

    Last publish

    Collaborators

    • dongwa