2.0.4 • Published 8 years ago

syst v2.0.4

Weekly downloads
4
License
ISC
Repository
github
Last release
8 years ago

SYST

SYST JS 是一个js MVC框架 功能比较纯粹简单, 使用起来也比较简单,里面有案例

  • 此框架依赖于: jQuery || Zepto
  • 使用前请先引入依赖插件
  • requireJS 引入:

    Model(模型创建);

    Controller(控制器)

    View(视图)

index.html;

	<!DOCTYPE html>
	<html>
	<head>
	  <meta charset="UTF-8" />
	  <title>SYST JS FRAMEWORK</title>
	</head>
	<body


	  <script src="js/libs/require/require.js"
			  data-main="js/libs/mian.js"
			  data-app="js/index/init.js"
			  data-appname="index"></script>
	</body>
	</html>