Excellent then you also have broken encapsulation. You’ve quoted this exact definition before:
Encapsulation is the packing of data and functions into a single component. The features of encapsulation are supported using classes in most object-oriented programming languages, although other alternatives also exist.
A language construct that facilitates the bundling of data with the methods (or other functions) operating on that data.
You have just said you have the data in the model and the functions in the view. The data and functions are in different components. So that’s two for two.
Wrong again. I quoted Robert C. Martin in #118