Giter VIP home page Giter VIP logo

Comments (9)

surmon-china avatar surmon-china commented on May 30, 2024 1

You need import the codemirror css.

import 'codemirror/lib/codemirror.css'

from vue-codemirror.

surmon-china avatar surmon-china commented on May 30, 2024

You may need to see the latest instructions for CHANGELOG.md, and README.md because there are some incompatible updates.

from vue-codemirror.

layanto avatar layanto commented on May 30, 2024

I still can't get v4 to work.

This is how I configure v3 (note I have left code not relating to CodeMirror out for clarity). Working fine but when changing package.json to v4 and updating npm, I get empty screen - no CodeMirror and also no error in console.

<template>
<codemirror v-model="data" :options="editorOptions" />
</template>
<script>
import { codemirror } from 'vue-codemirror'
import 'codemirror/addon/selection/active-line.js'
export default {
    components: {
        codemirror
    },
    data () {
        return {
            data: '',
            editorOptions: {
                readOnly: false,
                indentUnit: 4,
                mode: 'text/javascript',
                theme: 'base16-dark',
                styleActiveLine: true,
                extraKeys: {
                    Tab: function (cm) {
                        if (cm.somethingSelected()) {
                            cm.indentSelection('add')
                        } else {
                            cm.execCommand('insertSoftTab')
                        }
                    },
                    'Shift-Tab': function (cm) {
                        cm.indentSelection('subtract');
                    }
                }
            }
        }
    }
</script>
<style>
    .CodeMirror {
        height: 800px;
    }
</style>

from vue-codemirror.

layanto avatar layanto commented on May 30, 2024

I didn't need to do that with v3.
I have added import CSS on v4, now I see codemirror instance but it has default style. It appears that the theme I set in the option is not applied.

from vue-codemirror.

layanto avatar layanto commented on May 30, 2024

Looks like I need to import CSS specific to the theme set. This must somehow be done automatically with v3.

import 'codemirror/theme/base16-dark.css'

from vue-codemirror.

layanto avatar layanto commented on May 30, 2024

With import 'codemirror/lib/codemirror.css', vue-codemirror v4 is working. But with import 'codemirror/theme/base16-dark.css', codemirror is not working. I cannot set focus to codemirror and cannot enter text into the editor. All I see is black background.

from vue-codemirror.

layanto avatar layanto commented on May 30, 2024

Seems like the actual editor is offset to outside of the black background area - hence I thought the editor is missing. Not sure why the offset is all wrong with any theme, without theme working fine.

from vue-codemirror.

layanto avatar layanto commented on May 30, 2024

It seems that for theme to work correctly, I still need to import the default css in addition to the theme css.

import 'codemirror/lib/codemirror.css'
import 'codemirror/theme/base16-dark.css'

from vue-codemirror.

wuliupo avatar wuliupo commented on May 30, 2024

thanks @layanto, I find readOnly parameter here :)

from vue-codemirror.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.