-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Slots for start/end and options.position.start (#41)
* Implement additional slots (#34) * Implement additional slots * Upgrade readme * You can now start horizontal slides from nth item instead of always starting from 0 (#39) Co-authored-by: Fuxing Loh <[email protected]> * Implement additional slots (#34) * Implement additional slots * Upgrade readme * You can now start horizontal slides from nth item instead of always starting from 0 (#39) Co-authored-by: Fuxing Loh <[email protected]> * Prettier formatted * Unified start position into options as {position: {start: 0} } Converted start and end provided by slots into computed _items Co-authored-by: Adam Richter <[email protected]> Co-authored-by: Vikas Kedia <[email protected]>
- Loading branch information
1 parent
f81af47
commit 262bd56
Showing
7 changed files
with
827 additions
and
546 deletions.
There are no files selected for viewing
This file contains 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 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 @@ | ||
const devPresets = ['@vue/babel-preset-app']; | ||
const buildPresets = ['@babel/preset-env']; | ||
const devPresets = ["@vue/babel-preset-app"]; | ||
const buildPresets = ["@babel/preset-env"]; | ||
module.exports = { | ||
presets: (process.env.NODE_ENV === 'development' ? devPresets : buildPresets), | ||
presets: process.env.NODE_ENV === "development" ? devPresets : buildPresets, | ||
}; |
Oops, something went wrong.