首页 > 解决方案 > Why vue js component does not showing in laravel blade?

问题描述

I am trying to fix the following error from a component, but it's still failing. The error is the following

[Vue warn]: Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the "name" option.

In my password component, following script, I have the following:

<template>
    <div class="form-group form-material floating" data-plugin="formMaterial">
        <input id="password" type="password" class="form-control" name='password'>
        <label class="floating-label">Create password</label>

        <span class="password-info"><i class="fa fa-info-circle"></i></span>
        <div class="password-rules">minimum 6 characters</div>

        <span v-if="this.error != null" :class="['invalid-feedback', {'inline': this.error != null}]">
             <strong>{{ error }}</strong>
        </span>
    </div>

</template>

<script>
    import Password from 'password-strength-meter'

    export default{
        props: ['error'],

        mounted: function(){
            const $password = $('#password', this.$el);

            $password.password({
                showText: false,
                animate: true,
            });
        }
    }
</script>

<style lang="scss">
    @import '~password-strength-meter/dist/password.min.css';

</style>

The problem is that the vue component is not loading when the page opens, and the error disappears on refresh.

In laravel blade, I am using it in the following way:

@if($errors->has('password')) :error="'{{$errors->first('password')}}'" @endif></password-input>

In the app.js

I have following script

Vue.component('password-input', require('./components/PasswordInput.vue'));

new Vue({
    el: '#app'
});

Can someone guide me on how I fix it? I would appreciate if someone could guide me about this issue.

标签: javascriptlaravelvue.js

解决方案


我同意这条线有些奇怪。

@if($errors->has('password')) :error="'{{$errors->first('password')}}'" @endif></password-input>

您是否添加了组件标签的开头部分?IE<password-input @if($errors->has('password')) ...


但我不认为你可以在 Vue 组件中有一个可选的prop,所以如果没有错误,你就不会向 Vue 组件传递任何东西。

也许尝试这样的事情:

<password-input
    :error="'{{ $errors->has('password') ? $errors->first('password') : null }}'"
></password-input>

推荐阅读