https://github.com/peterroe/linv
micro-Vue
https://github.com/peterroe/linv
Last synced: 11 months ago
JSON representation
micro-Vue
- Host: GitHub
- URL: https://github.com/peterroe/linv
- Owner: peterroe
- Created: 2021-09-30T03:30:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T02:42:22.000Z (over 2 years ago)
- Last Synced: 2023-12-15T03:53:58.527Z (over 2 years ago)
- Language: JavaScript
- Size: 104 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
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
```