This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support vue component file that exports Vue.extend. (#95)
* Support vue component file that exports Vue.extend. Normally, vue component js file exports an options object. For example: export default {props:{title:""}}. In some cases, vue component js file needs to exports Vue.extend. For example: export default Vue.extend(options). Vue natually support it. This fix is used to support Vue.extend when using Vue components in React. * Fix eslint error. Fix below two errors: 3:41 error Missing space before function parentheses space-before-function-paren 16:33 error Missing space before function parentheses space-before-function-paren
- Loading branch information
Showing
4 changed files
with
7 additions
and
5 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
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