An open API service indexing awesome lists of open source software.

https://github.com/peterroe/linv

micro-Vue
https://github.com/peterroe/linv

Last synced: 11 months ago
JSON representation

micro-Vue

Awesome Lists containing this project

README

          

## What is Linv?

:rocket: a micro framework like Vue :zap:

## Install

```shell
yarn add linv
```

## Usage

```js
import Linv from 'linv'

new Linv({
el: '#app',
data: {
name: 'Peter Roe',
age: 23,
hobby: ['swiming','football','running']
},
template: `

姓名:{name}

年龄:{age}

`
})
```

## result

```
姓名:Peter Roe
年龄:23
```