-
Notifications
You must be signed in to change notification settings - Fork 533
Toward vuejs v2.0 #89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
0b1df2c
[wip] modification to work with vuejs 2.0.
5d6c0c7
fix: aligned with issue #84
35be49e
fix: rewrite in jade and commenting problematic fields
5b0a4d0
test: lock multiselect version
icebob 8128a52
Update README.md
icebob 475eb91
docs: fix npms.io badge url
icebob ce64c4e
add step attribute to number field #92
icebob 682c6ab
remove commit message package
icebob a40e23c
add number prop to input field
icebob 3d2e821
:bug: Fix options prop default #91
icebob ce72dc4
:package: Build
icebob ce44822
add bower
icebob d56f93c
:package: bump version & build
icebob 6bd9c78
docs: update changelog
icebob 6842f1b
Add missing opening brace
dominik-bln 26f63de
Merge pull request #97 from dominik-bln/patch-1
icebob 06b0022
Fixed bower file syntax error #98
icebob 1976b4a
bump version
icebob 79580a2
:package: Build v0.6.1
icebob 853228d
docs: update changelog
icebob acd1e22
Update README.md
icebob ca783ba
Merge branch 'lb_next'
lionel-bijaoui 61b76c1
Update vuejs version to 2.1.3, and made change accordingly (added vue…
lionel-bijaoui 1d090df
Fix a bug with v-model and dynamic type on input.
lionel-bijaoui File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"presets": ["es2015", "stage-0"], | ||
"presets": ["es2015", "stage-2"], | ||
"plugins": ["transform-runtime"], | ||
"comments": false | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
/* global Vue */ | ||
$(function() { | ||
let App = require("./App.vue"); | ||
|
||
let app = new Vue({ | ||
el: "body", | ||
components: { | ||
App | ||
} | ||
}); | ||
}); | ||
// var App = require('./app.vue'); | ||
// $(function() { | ||
// App.$mount('#app'); | ||
// }); | ||
|
||
import Vue from 'vue'; | ||
import App from './app.vue'; | ||
|
||
new Vue({ | ||
...App | ||
}).$mount('#app'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why changed to stage-2 from 0?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stage-2 is the default in the vue-cli webpack preset. It is less bleeding edge, I guess ? I don't mind putting it back to were it was, I just did that when I was debugging to exclude differences between your config and the proposed webpack config.
You use ES7 features ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Currently not, just I'm using stage-0 in my other projects too.