1.0.4 • Published 7 months ago

rollup-plugin-rp v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago
import build from 'rollup-plugin-rp';

export default {
  input: 'src/index.js',
  output: {
    dir: 'output',
    format: 'cjs'
  },
  plugins: [build()]
};

Usage:

account.html:

    <template name="AccountTemplate">
        name: {{model.name}},
        balance: {{model.balance}}
    </template>

account.js:

    import {AccountTemplate} from "./account.html";
    let $account = new AccountTemplate({
        name: 'Alice',
        balance: 100
    });
    document.body.appendChild($account);
    
    $account.model.balance = 200;
1.0.4

7 months ago

1.0.3

10 months ago

1.0.2

10 months ago

0.0.1

10 months ago