diff --git a/src/components/Select.vue b/src/components/Select.vue
index 4f3f74e..84dade3 100644
--- a/src/components/Select.vue
+++ b/src/components/Select.vue
@@ -298,7 +298,7 @@
- {{ loadingText }}
+ Loading...
@@ -310,7 +310,7 @@
- {{ noMatchText }}
+ Sorry, no matching options.
@@ -387,24 +387,6 @@
default: ''
},
- /**
- * Text to show if there is no matching options
- * @type {String}
- */
- noMatchText: {
- type: String,
- default: 'Sorry, no matching options.'
- },
-
- /**
- * Text to show when loading
- * @type {String}
- */
- loadingText: {
- type: String,
- default: 'Loading...'
- },
-
/**
* Sets a Vue transition property on the `.dropdown-menu`. vue-select
* does not include CSS for transitions, you'll need to add them yourself.