Skip to content

ym31316120/vue-framework7

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

88 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue-framework7

NPM Version dependencies Status devDependencies Status

Framework7 components built with Vue.js.

Install

Including scripts

<html>
<head>
  <link rel="stylesheet" href="https://npmcdn.com/framework7/dist/css/framework7.ios.min.css">
</head>
<body>
  <f7-views>
    <f7-view>
      <f7-pages>
        <f7-page>
          <f7-page-content>Hello F7.</f7-page-content>
        </f7-page>
      </f7-pages>
    </f7-view>
  </f7-views>
  <!-- including scripts before "</body>" -->
  <script src="https://npmcdn.com/vue/dist/vue.min.js"></script>
  <script src="https://npmcdn.com/vue-framework7/f7.js"></script>
  <script>
    new Vue({
      el: 'body',
      replace: false
    })
  </script>
</body>
</html>

With Webpack

Install vue-framework7:

npm i vue-framework7

Then:

import 'framework7/dist/css/framework7.ios.min.css'
import Vue from 'vue'
import F7 from 'vue-framework7'
Vue.use(F7)

TODO & Demo

NAVBARS & TOOLBARS

OVERLAYS

LIST VIEW (TABLE VIEW)

FORMS

License

MIT

About

Framework7 components built with Vue.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vue 86.0%
  • JavaScript 13.7%
  • HTML 0.3%