Commit 86f25061 authored by Fawad Mirzad's avatar Fawad Mirzad
Browse files

Add docs folder

parent db827d76
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -10,3 +10,4 @@ babel.config.js
build-copy.js
CONTRIBUTING.md
jsconfig.json
docs

docs/.npmignore

0 → 100644
+12 −0
Original line number Diff line number Diff line
pids
logs
node_modules
npm-debug.log
coverage/
run
dist
.DS_Store
.nyc_output
.basement
config.local.js
basement_dist
+15 −0
Original line number Diff line number Diff line
<template>
  <p class="demo">
    {{ msg }}
  </p>
</template>

<script>
  export default {
    data () {
      return {
        msg: 'Hello this is <Foo-Bar>'
      }
    }
  }
</script>
+3 −0
Original line number Diff line number Diff line
<template>
  <p class="demo">This is another component</p>
</template>
+15 −0
Original line number Diff line number Diff line
<template>
  <p class="demo">
    {{ msg }}
  </p>
</template>

<script>
  export default {
    data() {
      return {
        msg: 'Hello this is <demo-component>'
      }
    }
  }
</script>
Loading