Commit 46447446 authored by sysadmin's avatar sysadmin
Browse files

Initial commit

parents
Loading
Loading
Loading
Loading
Loading

.gitignore

0 → 100755
+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

package.json

0 → 100755
+19 −0
Original line number Diff line number Diff line
{
  "name": "vuepress-pages",
  "version": "0.0.1",
  "description": "",
  "main": "index.js",
  "authors": {
    "name": "sysadmin",
    "email": "27-sysadmin@biblio19.net"
  },
  "repository": "https://git.biblio19.net/sysadmin/vuepress-pages.git/vuepress-pages",
  "scripts": {
    "dev": "vuepress dev src",
    "build": "vuepress build src"
  },
  "license": "MIT",
  "devDependencies": {
    "vuepress": "^1.5.3"
  }
}
+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>