# Aue.js **Repository Path**: team-xc/Aue.js ## Basic Information - **Project Name**: Aue.js - **Description**: This is a js framework! - **Primary Language**: HTML - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-11-28 - **Last Updated**: 2023-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Aue.js This is a js framework! Usage ``` js ``` or ``` js ``` Create an instance of Aue: ``` js var am = new Aue({ // options }) ``` Data: ``` js var am = new Aue({ data: { msg: 'Hello Aue.js' } }); ``` Methods: ``` js var am = new Aue({ methods: { fn: function(self) { console.log(self.value); } } }); ``` Binding data: ``` html Message: {{ msg }} ``` Binding data (once): ``` html Message: {{ msg }} ``` Click event: ``` html ``` Update data: ``` html
{{ value }}
``` Conditional rendering: ``` html