-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "revert: this reverts commit b248723."
This reverts commit 71285b4.
- Loading branch information
1 parent
71285b4
commit 513c68c
Showing
18 changed files
with
3,745 additions
and
3,294 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
18 |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<template> | ||
<div> | ||
<button v-hubble="'submit'">Submit</button> | ||
<button v-hubble="'cancel'">Cancel</button> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'Buttons', | ||
setup() { | ||
const hubble = 'buttons'; | ||
return { | ||
hubble, | ||
}; | ||
}, | ||
}; | ||
</script> | ||
|
||
<style scoped> | ||
button { | ||
margin: 10px; | ||
} | ||
</style> |
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,4 +1,3 @@ | ||
// import Vue from 'vue'; | ||
import { createApp, h } from 'vue'; | ||
|
||
import App from './App.vue'; | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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 +1 @@ | ||
16 | ||
18 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# Plugin Options | ||
|
||
| Name | Type | Default | Description | | ||
| ------------------------ | ----------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------- | | ||
|--------------------------|-------------------|---------|---------------------------------------------------------------------------------------------------------------------------------------| | ||
| `defaultSelectorType` | `string` | `attr` | Defines the selector type if not passed into the directive `v-hubble:attr` | | ||
| `enableComments` | `boolean` | `false` | Enables or disables comments around elements with hubble selectors | | ||
| `enableDeepNamespacing` | `boolean` | `true` | Enables or disables auto recursive namespacing | | ||
| `enableSelectorPicker` | `boolean` | `false` | Enables or disables the selector picker feature | | ||
| `environment` | `string or array` | `test` | Defines the environment(s) in which these selectors are added | | ||
| `environment` | `string or array` | `test` | Defines the environment(s) in which these selectors are added.<br /><br />**Note:** Use `*` for all environments. | | ||
| `enableGroupedSelectors` | `boolean` | `true` | Enables or disables grouping the `vue-hubble-selector` attribute value with `[vue-hubble]` | | ||
| `prefix` | `string` | `''` | Prefixes all selectors with the value and `--`, if value exists. For example, if `prefix = 'qa'`, all selectors well begin with`qa--` | |
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
Oops, something went wrong.