0.0.1 • Published 8 years ago

ng2-loader v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

ng2-loader (forked from vue-loader)

Angular2 component loader for Webpack.

WORK IN PROGRESS! Do not use

It allows you to write your components in this format:

<template id="hello-world">
    <h1>Hello World</h1>
</template>

<script>
    import {Component} from 'angular2/core';

    @Component({
        selector: 'hello-world'
    })
    export default class{
    }
</script>

<style>
    hello-world{
        display: block;
        text-align: center;
        color: blue;
    }
</style>