+ This search page is not available at the moment, please use the search box in the top navigation bar. +
+ + + + + + + + + + + + + +No results found for query "".
+ + + + + +diff --git a/src/.vuepress/components/search/index.vue b/src/.vuepress/components/search/index.vue
new file mode 100644
index 0000000000..170154c488
--- /dev/null
+++ b/src/.vuepress/components/search/index.vue
@@ -0,0 +1,258 @@
+
+
+ This search page is not available at the moment, please use the search box in the top navigation bar.
+ No results found for query "".
{{ text }}
@@ -30,12 +30,14 @@ In Vue 2, you can define the props that a component received, but you can't decl ## 3.x Behavior -Similar to props, the events that the component emits can now be defined with the `emits` option. +Similar to props, the events that the component emits can now be defined with the `emits` option: -```html +```vue -{{ text }}
- +{{ text }}
+ +{{ text }}
@@ -80,12 +80,12 @@ When a parent listens for the `click` event on the component: it would now be triggered _twice_: -- Once from `$emit()` -- Once from a native event listener applied to the root element +- Once from `$emit()`. +- Once from a native event listener applied to the root element. Here you have two options: -1. Properly declare the `click` event. This is useful if you actually do add some logic to that event handler in `