san
v3.15.1
Published
A fast, portable, flexible JavaScript component framework
Downloads
898
Maintainers
Keywords
Readme
安装(Install)
NPM:
$ npm i san
CDN:
<script src="https://unpkg.com/san@latest"></script>
发布文件说明(Dist Files Information)
快速开始(Quick Start)
<!DOCTYPE html>
<html>
<head>
<title>Quick Start</title>
<script src="https://unpkg.com/san@latest"></script>
</head>
<body>
<script>
const MyApp = san.defineComponent({
template: `
<div>
<input type="text" value="{=name=}">
<p>Hello {{name}}!</p>
</div>
`
});
let myApp = new MyApp({
data: {
name: 'San'
}
});
myApp.attach(document.body);
</script>
</body>
</html>
示例(Examples)
文档(Document)
周边(Companions)
| | 说明(Description) | | --------------------- | ------------------------------- | | san-devtools | 调试应用的工具和扩展Development tools for debugging applications | | san-router | 支持 hash 和 html5 模式的 RouterSPA/MPA Router | | san-store | 应用状态管理套件Application States Management | | san-update | Immutable的对象更新库Immutable Data Update | | san-composition | 组合式 APIComposition API | | san-ssr | 服务端渲染框架与工具库SSR framework and utils | | santd | Ant Design 风格的组件库Components Library following the Ant Design specification | | san-mui | Material Design 风格的组件库Material Design Components Library | | san-xui | 百度云控制台风格的组件库A Set of UI Components that widely used on Baidu Cloud Console | | sanny | VSCode 插件VSCode extension for SAN | | san-cli | 帮助快速搭建应用的命令行工具A CLI tooling for rapid development | | san-loader | 支持 sfc 的 Webpack loaderWebpack loader for single-file components | | san-factory | 组件工厂能帮助你在不同环境下更灵活的装配组件Component register and instantiation | | san-anode-utils | ANode 处理工具库Util Functions for ANode | | san-test-utils | 单元测试工具库The unit testing utility library |
变更历史(ChangeLog)
Please visit document ChangeLog
License
San is MIT licensed.