xframeworkjs

0.0.1 • Public • Published

XFramework

面向"常青树"浏览器的前端组件化开发框架。

Proxy + WebComponnets + Virtual DOM,更快更彻底的组件化开发。

组件

定义组件

hello-world.html:

<template x-element="hello-world">
  <div class="text" onclick="alert('点击')">
    <h2>name: {{framework.name}}</h2>
    <h3>version: {{framework.version}}</h3>
    <p>{{message}}</p>
  </div>
</template>
 
<script>
  XF.component('hello-world', {
    data: {
      framework: {
        name: 'xframework',
        version: '0.0.1'
      },
      message: ''
    },
    created: function () {
      console.log('created');
      this.data.framework.version = '0.0.2';
      this.data.message = '面向"常青树"浏览器的前端框架';
    },
    attached: function () {
      console.log('attached');
      this.root.style.backgroundColor = "#eee";
    },
    attrChanged: function () {
      console.log('attrChanged');
    },
    detached: function () {
      console.log('detached');
    }
  });
</script> 
 
<style>
  :host {
    color: #383838;
  }
</style> 

使用组件

<!DOCTYPE html>
<html lang="en">
 
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>XFramework-Compile</title>
  <script src="./xframework.js"></script> 
  <link rel="import" href="hello-world.html">
</head>
 
<body>
  <hello-world></hello-world>
</body>
 
</html>

TODO

  • 事件支持
  • 指令支持

参考

Package Sidebar

Install

npm i xframeworkjs

Weekly Downloads

1

Version

0.0.1

License

MIT

Unpacked Size

263 kB

Total Files

19

Last publish

Collaborators

  • zhaomenghuan