{"id":13937951,"url":"https://github.com/Akryum/meteor-vue-example","last_synced_at":"2025-07-20T00:31:27.394Z","repository":{"id":66017346,"uuid":"61398772","full_name":"Akryum/meteor-vue-example","owner":"Akryum","description":"Simple meteor example with vue","archived":false,"fork":false,"pushed_at":"2019-02-10T12:55:51.000Z","size":11,"stargazers_count":31,"open_issues_count":3,"forks_count":13,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-08T04:30:29.357Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Akryum.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-06-17T19:54:18.000Z","updated_at":"2022-11-11T16:19:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"8f5a30fb-653a-487d-bd46-ea28dd6375ea","html_url":"https://github.com/Akryum/meteor-vue-example","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Akryum/meteor-vue-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Akryum%2Fmeteor-vue-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Akryum%2Fmeteor-vue-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Akryum%2Fmeteor-vue-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Akryum%2Fmeteor-vue-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Akryum","download_url":"https://codeload.github.com/Akryum/meteor-vue-example/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Akryum%2Fmeteor-vue-example/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266048501,"owners_count":23868738,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-07T23:04:07.818Z","updated_at":"2025-07-20T00:31:22.375Z","avatar_url":"https://github.com/Akryum.png","language":"Vue","funding_links":[],"categories":["Vue"],"sub_categories":[],"readme":"# Simple meteor app with vue\n\nA simple meteor project featuring [vue](https://vuejs.org/) as ui layer ([more info](https://github.com/Akryum/meteor-vue-component)).\n\n## Steps to reproduce\n\nIn the console, create the project and add the relevant packages:\n\n    meteor create meteor-vue-example\n    cd ./meteor-vue-example\n    meteor remove blaze-html-templates\n    meteor add static-html akryum:vue akryum:vue-component session\n    meteor\n\nAll the required npm dependencies will be automatically added to your project's `package.json` and installed with `meteor npm install`.\n\nReplace the `client/main.html` file with:\n\n```html\n\u003chead\u003e\n  \u003ctitle\u003emeteor-vue-example\u003c/title\u003e\n\u003c/head\u003e\n\n\u003cbody\u003e\n  \u003capp\u003e\u003c/app\u003e\n\u003c/body\u003e\n```\n\nReplace the `client/main.js` file with:\n\n```javascript\n// Libs\nimport {Meteor} from 'meteor/meteor';\nimport {Vue} from 'meteor/akryum:vue';\n\n// Main app\nimport App from '/imports/ui/App.vue';\n\nMeteor.startup(() =\u003e {\n  new Vue({\n    el: 'body',\n    replace: false,\n    components: {\n      App\n    }\n  });\n});\n```\n\nCreate Vue components in `.vue` files. Component files outside of the `imports` directory will automatically registered with `Vue.component` ([more info](https://github.com/Akryum/meteor-vue-component/tree/master/packages/vue-component#global-vue-components)). Or you can import your single-file components with an `import` statement ([more info](https://github.com/Akryum/meteor-vue-component/tree/master/packages/vue-component#manual-import)). When you save them, your components will be instantly hot-reloaded in your browser.\n\nYou can add more languages in your single-file components, see [here](https://github.com/Akryum/meteor-vue-component/tree/master/packages/vue-component#language-packages).\n\nInside your Vue components, you can use [Meteor tracker](https://github.com/Akryum/meteor-vue-component/tree/master/packages/vue#usage), [Apollo](https://github.com/Akryum/meteor-vue-component/tree/master/packages/vue-apollo#installation) or [a vuex store](https://github.com/Akryum/meteor-vue-component/tree/master/packages/vuex#installation).\n\nYou can add a [routing system](https://github.com/Akryum/meteor-vue-component/tree/master/packages/vue-router#installation) and [localization](https://github.com/Akryum/meteor-vue-component/tree/master/packages/vue-i18n#installation).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAkryum%2Fmeteor-vue-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FAkryum%2Fmeteor-vue-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAkryum%2Fmeteor-vue-example/lists"}