сделать кнопку и настроить по своему, допустим цвет менять.
Я пропсы кнопке прописал. Вопрос. Как мне получить все пропсы компонента?
One way to access a component by name from the main Vue instance is this: let componentName = 'my-component'; const component = this.$options.components[componentName]; If you need to access this from inside another component, you would first have to reference the main Vue instance, which would be this.$root, i.e. const component = this.$root.$options.components[componentName]; and to access the props of that component: let props = component.options.props;
Обсуждают сегодня