1.0.16 • Published 9 months ago

novaaa-plus v1.0.16

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago
  • 💪 Vue 3 Composition API
  • 🔥 Written in TypeScript

Getting Started

Alright, for you to get started if you are looking for making Nova Plus better you should keep reading. For developers that uses Nova Plus to develop your website you should go ahead visit Getting Started. You may need to read the source code here.

Installation

Using npm:

$ npm install -g npm
$ npm i --save nova-plus@latest

Of course,you can install nova-plus by other package manager(yarn/pnpm...). just like it.

In components:

<template>
  <json-virtual-table :options="options" :events="events"></json-virtual-table>
</template>

<script lang="ts" setup>
import { JsonVirtualTable } from 'nova-plus'
import type { JsonVirtualProps } from 'nova-plus'
const options: JsonVirtualProps = {
  	columns:[
      { field: 'name', title: 'name' },
      { field: 'sex', title: 'sex' },
      { field: 'address', title: 'Address' }
    ],
    data: [
      { id: 100061, name: 'Test1', sex: 'Man', address: 'Shenzhen' },
      { id: 100062, name: 'Test2', sex: 'Man', address: 'Guangzhou' },
      { id: 100063, name: 'Test3', sex: 'Man', address: 'Shanghai' }
    ]
  }
</script>

Components List

JsonVirtualTable

  • a component ablout virtual table, it's nased on Vxe Table secondary development ( more ) .

CodeXpert

  • a component ablout code editor, it's nased on Monaco Editor secondary development ( more ).

Browser Support

ChromeFirefoxSafariOperaEdgeIE
Last 2✔Last 2✔Last 2✔Last 2✔Last 2✔10+ ✔

Contributing

If you have any idea, feel free to open an issue to discuss a new feature, or fork Nova Plus and submit your changes back to me.

Release Notes

  • Version 1.0.X First public release
1.0.16

9 months ago

1.0.15

9 months ago

1.0.14

9 months ago

1.0.13

9 months ago

1.0.12

9 months ago

1.0.11

9 months ago

1.0.10

9 months ago

1.0.9

9 months ago

1.0.8

9 months ago

1.0.5

9 months ago

1.0.4

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago